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
'프로그래밍_기타 > git' 카테고리의 다른 글
[git] cli 명령어 (0) | 2023.03.19 |
---|---|
[git] Branch (0) | 2023.03.19 |
[git] git 기본 설명 (0) | 2023.03.19 |
github에 연동 (0) | 2022.10.11 |