Git

[Git] Git 설치하기(Windows) :: 송코딩

송코딩 songcoding 2022. 9. 22. 11:08

Git Hub와 IDE(통합 개발 툴/환경; ex. Eclipse, IntelliJ ...) 프로젝트를 연결하실 분들은

로컬(본인 컴퓨터)에 Git을 설치하셔야 합니다.

 

 

1. Git 다운로드 사이트 이동

 

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

 

2. Download for Windows 클릭 

 

3. Click here to download 

 

4. 다운 받은 .exe 파일 실행 (기본 설정으로 설치하려면 계속 Next)

 

5. Git 설치 완료!

 

6. Windows > Git Bash 실행

 

7. Git User 등록 (Git Bash 명령어)

$ git config --global user.name "깃허브이름"
$ git config --global user.email 깃허브메일주소

 

8. Git User 확인

$ git config --list

 

 

고생하셨습니다 :)