VSCode的git賬戶重置

johnjim0816發表於2020-12-14

使用VSCode想要在電腦上換一個git賬戶pull/push,有那種儲存多賬號方法,但是也可以直接重置,

git config --global --unset credential.helper
git config --global --unset user.name  
git config --global --unset user.email 

然後重設賬戶:

git config --global user.name "使用者名稱"

git config --global user.email "使用者郵箱"

同時還可以設定讓VSCode記住git賬號和密碼:

git config --global credential.helper store

相關文章