檢視使用者名稱 :git config user.name
檢視密碼: git config user.password
檢視配置資訊: $ git config --list
修改使用者名稱
git config --global user.name "***x(新的使用者名稱)"
修改密碼git config --global user.password "***x(新的密碼)"
修改郵箱
git config --global user.email "***x@***.com(新的郵箱)"
移除使用者名稱和郵箱
git config --global --replace-all user.name "你的 git 的名稱"
git config --global --replace-all uesr.email "你的 git 的郵箱"
git config --system --unset credential.helper
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...
linux清除git賬號密碼
通過git,使用http每次操作遠端倉庫,都神煩需要賬號密碼。使用git config global credential.helper store指令,記住賬號密碼之後,後來發現git的賬號被鎖定成第一次輸入的賬號密碼 怎麼改都不行,簡直譁了狗 網上查閱資料!能查詢到就見鬼了 折騰了半天,終於搞定...