본문 바로가기

백앤드/Linux

[Linux] 리눅스에 Git 설치하기

반응형
sudo apt install git

위 명령어를 통해서 git을 설치할 수 있습니다.

 

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 git : Depends: liberror-perl but it is not going to be installed
       Depends: git-man (> 1:2.25.1) but it is not going to be installed
       Depends: git-man (< 1:2.25.1-.) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

만약 이 명령어를 입력했을 때, 위에처럼 에러가 발생한다면 아래 내용을 따라해주세요.

 

sudo apt --fix-broken install

위 명령어를 입력한 후 설치가 완료되면 git 명령어를 입력했을 때 아래 그림과 같이 설치가 완료되었을 때 나오는 문구를 확인할 수 있습니다.

 

반응형