[개발 환경 구축]/Git
[개발 환경 구축] Git 설치 및 설치 확인
seom-j
2024. 7. 11. 19:45
① 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
② Git bash Install 수행
모두 next & Download 수행
③ Git bash 실행 후 초기 설정
아래 명령어를 통한 원하는 아이디 설정
git config —global [user.name](<http://user.name>) “원하는 아이디”
아래 명령어를 통한 원하는 이메일 설정
git config —global [user.email](<http://user.email>) “원하는 이메일”
아래 명령어를 통한 name, email 설정 확인
git config —list
➡️ user.name과 user.email 확인 가능, 앞으로의 작업시 라벨이 붙을 예정