프로그래밍_기타/git
git config
wjwkddyd221001
2022. 10. 11. 22:13
1. 단축 명령어
단축 명령어 지정: git config --global alias.l '명령어'
단축 명령어 삭제: ./.gitconfig 에서 삭제
2. git config
설정 확인가능: git config --list
- 나가기 q
깃 사용자 이름: git config user.name
깃 사용자 메일: git config user.email
깃 사용자 이름 변경: git config --global user.name
깃 사용자 메일 변경: git config --global user.email
이름 삭제: git config --unset user.name
메일 삭제: git config --unset user.name