본문 바로가기
나중에 설치 다시할때 봐야징

Git 설치하기

by 박 현 황 2021. 7. 9.

https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

 

여기로 들어가서 운영체제에 맞는거 설치하기

 

설치된 exe파일 설치하는데 다 기본값으로 설치하면 됩니다.

다 next 눌러주기

 

 

설치한 후 Git Bash를 통해서 이름이랑 이메일 설정해줘야합니다.

 

$ git config --global user.name "이름"


$ git config --global user.email "이메일"

 

그리고

$git config -list 하면 하단에 이름이랑 이메일 잘 들어갔는지 확인하시면 됩니다.