之前用同事的gitlab帳號check了程式碼到本地,現在想切換到自己的帳號進行操作。在專案的根目錄和全域的git配置都沒發現使用者記錄,求解決方法
光阴似箭催人老,日月如移越少年。
看看.ssh 目錄下的私鑰匙檔。 http登錄,只有長期儲存才能用舊密碼。
設定記住密碼(預設15分鐘):
git config --global credential.helper cache如果想自己設定時間,可以這樣做:
git config credential.helper 'cache --timeout=3600'這樣就設定一個小時之後失效
長期儲存密碼:
git config --global credential.helper store
看看.ssh 目錄下的私鑰匙檔。
http登錄,只有長期儲存才能用舊密碼。
設定記住密碼(預設15分鐘):
git config --global credential.helper cache
如果想自己設定時間,可以這樣做:
git config credential.helper 'cache --timeout=3600'
這樣就設定一個小時之後失效
長期儲存密碼:
git config --global credential.helper store