본문 바로가기

운영체제/우분투

Ubuntu에서 git 설치하기

패키지 목록 업데이트

sudo apt update

 

 

git 설치하기

sudo apt install git

 

 

git 설치 확인

git --version

 

 

 

Git을 사용하기 위한 기본 설정

git config --global user.name "당신의 이름"
git config --global user.email "당신의이메일@example.com"