Git
git 설정 확인 및 변경하기
by kylie_H
2020. 4. 7.
사용자 정보 변경
| git config --global user.name "이름" git config --global user.email "email@aa.com" | cs |
사용자 삭제
| git config --unset user.name git config --unset user.email | cs |
global 사용자 삭제
| git config --unset --global user.name git config --unset --global user.email | cs |
출처 : https://webisfree.com/2018-07-26/git-config-%EC%84%A4%EC%A0%95-%ED%99%95%EC%9D%B8-%EB%B0%8F-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0