當(dāng)git密碼更改后裸燎,需要 清除git賬號(hào)密碼緩存,這里記錄下相關(guān)git命令:
一憔购、清理前先查看git配置信息
git config --list
git config --global --list
git config --system --list
git config --local --list
二宫峦、清除配置中紀(jì)錄的用戶名和密碼,下次提交代碼時(shí)會(huì)讓重新輸入賬號(hào)密碼:
git config --global --unset credential.helper
git config --global --unset user.name
git config --global --unset user.email
Ps:附加
如果執(zhí)行命令成功玫鸟,需要再次pull或push時(shí)緩存輸入的用戶名和密碼
git config --global credential.helper store
清除git緩存中的用戶名的密碼
git credential-manager uninstall
配置用戶名和郵箱
git config --global user.name "username"
git config --global user.email "useremail@qq.com"