# Git config 설정 확인하기
$ git config --global --list
$ git config --list
# user.name user.email 설정하기
git config user.name "user 이름"
git config user.email "user 이메일"
git config --global user.name "user 이름"
git config --global user.email "user 이메일"
# user.name과 user.email 삭제하기
git config --unset user.name
git config --unset user.email
git config --unset --global user.name
git config --unset --global user.email
(아래는 global로 설정된 경우 삭제하기)
다시 git config 확인해서 설정이랑 삭제가 잘 되어 있는지 체크!
'Dev > Git' 카테고리의 다른 글
Git 에러 해결 | Large File Storage 해결 - lfs install (0) | 2021.06.04 |
---|---|
Git 에러 해결 | Large files detected (2) | 2020.11.25 |
Gitlab 에서 Github 으로 저장소 옮기기 (미러링) (1) | 2020.06.19 |
Git 에러 해결 | LF will be replaced by CRLF in (0) | 2020.04.03 |