[USER NAME 등록, Email 등록, Config 확인]
//user name insert to config
git config -global user.name '{username}'
//user email insert to config
git config -global user.email '{Email}'
//config check
git config --list
[USER NAME 삭제]
//unset user name
git config --unset user.name
//unset email
git config --unset user.email
//confirm config
git config --list
//if did not unset user name
git config --unset --global user.name
//if did not unset user email
git config --unset --global user.email
//confirm config
git config --list
728x90
'형상관리 > git' 카테고리의 다른 글
result command after using command by $git remote --help (2) | 2023.12.21 |
---|---|
git [ERROR] - Could not read from remote repository. (0) | 2022.07.28 |
git pull [reset, pull] (0) | 2022.07.12 |
git push [create branch, commit, checkout] (0) | 2022.07.11 |
git pull and log _ git 가져오기 및 이력확인 (0) | 2022.07.05 |