切換帳號
介紹
一開始推上遠端倉庫會要求輸入帳號密碼,例如 GitHub https 方式,之後要再推遠端倉庫就一直使用此帳號密碼,但如果想要切換帳號密碼時,必須下指令
憑證存儲 Credential Storage
儲存方式有好幾種
cahce
store
osxkeychain
winstore
mac 預設是使用 osxkeychain osxkeychain 是 mac 內建的鑰匙圈 作者會特別說明 osxkeychain
winstore 是給 windows 用的
git config credential.helper
查看使用的是哪個憑證模式
git config --global credential.helper mode
設定憑證模式
編輯 osxkeychain
刪除 github 的 osxkeychain,下次 push 到 github 時就會要求你輸入帳號密碼,也就是可以切換帳號了,或者也可以直接編輯它的資料
按 <Ctrl-space> 打開 Spotlight 搜尋 Keychain Access app
在鑰匙圈搜尋 github
在取用權限控制有寫 git-credential-osxkeychain 才是 github 登入用的
接下來看是要編輯或刪除都可
使用終端刪除
注意 host=github.com 和 protocol=https 要手動輸入
Last updated