728x90
728x170
Git 기본 설정
1) Git-bash 혹은 터미널 실행
2) 미리 캐치저장되어 있을지 모를 계정정보 삭제 (처음 설치시 생략 가능)
1
2
|
# git config --global --unset credential.helper
# git config --system --unset credential.helper
|
3) 나의 Github 계정 이메일 (Github 계정이메일) 과 이름 (본인 영문이름, Github 아이디 X)을 적음
1
2
|
# git config --global user.email "본인메일적으세요@gmail.com"
# git config --global user.name "본인이름적으세요"
|
*참고
1
2
|
# git commit -s // -로 시작하면 보통은 Short Name 옵션
# git config --global user.name "Hong Gildong" // --로 시작하면 보통은 Long Name 옵션
|
728x90
그리드형(광고전용)
'In-depth Study > Git' 카테고리의 다른 글
[GitHub] 깃허브(GitHub)와 비주얼 스튜디오 코드(Visual Studio Code) 연동하기 (0) | 2022.06.24 |
---|---|
[GitHub] 마크다운(Markdown) 문서에 유튜브(YouTube) 동영상 추가하기 (0) | 2022.06.23 |
[Git] 깃(Git) 설치 후, 사용자 계정/이메일 설정하는 방법 (0) | 2022.06.15 |
[Git] Git 연동 오류 : Make sure you configure your 'user.name' and 'user.email' in git. (0) | 2021.06.22 |
Mastering Markdown (0) | 2017.11.16 |
Git 명령어 목록 (0) | 2017.05.17 |
Git 고급 명령어 (0) | 2017.05.16 |
Git 기본 명령어 (0) | 2017.05.10 |