git 사용자 이름, 이메일 확인

git config user.name # 이름 확인
git config user.email # 이메일 확인

git 사용자 이름, 이메일 변경

git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

git 사용자 이름 및 이메일 삭제

git config --unset user.name # 이름 삭제
git config --unset user.email # 이메일 삭제

commit이 unknown으로 나올 때 git 사용자 이름, 이메일 변경을 해주면 정상적으로 나오게 함

0개의 댓글

Powered by GraphCDN, the GraphQL CDN