linux清除git賬號密碼

2021-08-14 11:31:13 字數 428 閱讀 5606

通過git,使用http每次操作遠端倉庫,都神煩需要賬號密碼。

使用git config --global credential.helper store指令,記住賬號密碼之後,後來發現git的賬號被鎖定成第一次輸入的賬號密碼……

怎麼改都不行,簡直譁了狗……

(╯‵□′)╯︵┻━┻

網上查閱資料!

能查詢到就見鬼了……

折騰了半天,終於搞定了

(づ。◕‿‿◕。)づ 執行vi ~/.git-credentials,可以看到被儲存的賬號密碼,刪掉或者修改都可以了!

eg:http://賬號:密碼@git倉庫http位址

~the end~

網上資料質量越來越水了的樣子 ᕙ( * •̀ ᗜ •́ * )ᕗ

檢視git 賬號密碼和修改git賬號密碼

檢視使用者名稱 git config user.name 檢視密碼 git config user.password 檢視配置資訊 git config list 修改使用者名稱 git config global user.name x 新的使用者名稱 修改密碼git config global ...

git記住賬號密碼

涉及到記住密碼的方式,只適用於http s 方式,記住密碼的幾種方式 https 方式每次都要輸入密碼,按照如下設定即可輸入一次就不用再手輸入密碼的困擾而且又享受 https 帶來的極速 按照以下設定記住密碼十五分鐘 git config global credential.helper cache...

Git記住賬號密碼

git儲存使用者名稱密碼的方式 1 設定記住密碼 預設15分鐘 git config global credential.helper cache git config credential.helper cache2 如果想自己設定時間,可以這樣做 git config credential.he...