728x90
728x90
- 현재 설정된 Git Config 확인
git config --list
- 현재 설정된 username 확인
git config user.name
- 현재 설정된 useremail 확인
git config user.email
- username 설정하기 (디렉터리 전용)
git config user.name "JK"
- useremail 설정하기 (디렉터리 전용)
git config user.email java.jaydev@gmail.com
- username 설정하기 (글로벌)
git config --global user.name "JK"
- useremail 설정하기 (글로벌)
git config --global user.email java.jaydev@gmail.com
- username 삭제하기 (디렉터리 전용)
git config --unset user.name
- useremail 삭제하기 (디렉터리 전용)
git config --unset user.email
- username 삭제하기 (글로벌)
git config --global --unset user.name
- useremail 삭제하기 (글로벌)
git config --global --unset user.email
728x90
300x250
'Git' 카테고리의 다른 글
GitHub에서 Fork와 Pull Request 완벽 이해하기 | 포크 , 풀리퀘스트 , PR , 오픈소스 기여하기 , opensource , 깃헙 관리 (0) | 2024.11.29 |
---|---|
[Git; 깃] 파일명 대소문자 바꿔도 인식 안될때 / core.ignorecase (0) | 2024.01.09 |
[Git; 깃] Git 버전 관리의 핵심 도구 (0) | 2023.10.04 |
[Git; 깃] GitHub CLI 인증 사용자 변경하기 ( Git Bash ) (0) | 2022.11.04 |
[Git; 깃] 이미 commit 된 파일 ignore 하기 (0) | 2022.10.24 |