라이브러리는 도서관 아닌가요

git bash windows 설치, 초기 설정 본문

TIP

git bash windows 설치, 초기 설정

veryhi 2021. 12. 19. 04:20

 

1. 아래의 링크에 접속하여 파일을 받는다.

https://gitforwindows.org/

 

Git for Windows

Git for Windows focuses on offering a lightweight, native set of tools that bring the full feature set of the Git SCM to Windows while providing appropriate user interfaces for experienced Git users and novices alike. Git BASH Git for Windows provides a BA

gitforwindows.org

 

 

 

2. 실행하여 쭉쭉 진행한다.

 

 

 

3. 아무 곳이나 우클릭하여 git bash 바로 열 수 있는지 확인한다. 재부팅은 안 해도 된다!

 

 

 

4. 위에서 Git Bash Here를 클릭 후 초기 설정 진행

git config --global user.name [이름]

git config --global user.email [메일주소]

커밋할 때 사용하는 정보이므로 반드시 해주어야 한다.

 

 

 

5. 커밋 넣기 전에 미리 github.com에서 로그인해놓자. - 끝 -

 

 

Comments