1. 程式人生 > >刪除本地git賬號

刪除本地git賬號

問題

git賬號密碼輸入錯誤後,再次操作會自動使用上次輸入錯誤的賬號密碼:

remote: HTTP Basic: Access denied
fatal: Authentication failed for 'http://xxx.git/'

解決

方法1

設定清空git儲存的賬號密碼並每次操作時強制輸入賬號密碼,即git不自定儲存賬號密碼

git config --system --unset credential.helper

設定git自動儲存輸入的賬號密碼

git config --global credential.helper store

方法2

Windows平臺在控制面板/使用者帳戶/憑據管理器下可以檢視到git儲存的賬號資訊,手動刪除指定git賬號資訊即可。

在這裡插入圖片描述