삭제 후 재설치
배포판에 설치된 깃이 오래된 버전이라면, 패키지를 삭제하고 다시 설치할 수도 있습니다. remove 옵션을 사용하여 기존에 설치된 깃을 제거할 수 있습니다.
예
root@hojin1:~# apt remove git
Reading package lists... Done
Building dependency tree
Reading state information... Done
생략...
Removing ubuntu-server (1.417.1) ...
Removing git (1:2.17.1-1ubuntu0.4) ...
설치된 깃을 삭제했다면, 새로운 깃 버전을 패키지 관리자로 설치하면 됩니다.
예
root@hojin1:~# apt install git
Reading package lists... Done
Building dependency tree
Reading state information... Done
생략...
Preparing to unpack .../git_1%3a2.17.1-1ubuntu0.4_amd64.deb ...
Unpacking git (1:2.17.1-1ubuntu0.4) ...
Setting up git (1:2.17.1-1ubuntu0.4) ...
앞 코드와 실행 결과가 비슷하다면 정상적으로 설치된 것입니다. 원하는 특정 버전이 있다면, 깃 공식 사이트에 접속하여 설치 파일이나 소스 코드를 내려받아 컴파일하여 설치할 수도 있습니다.