반응형
# git config 확인
git config --list

# git config 설정
git config --global user.name "user-name"
git config --global user.email abcd@naver.com

# 잘못등록한 config 삭제
git config --unset --global user.name
git config --unset --global user.email

 

 

🔗 참고 및 출처

https://jonhyuk0922.tistory.com/233

반응형