Git提交記住賬戶密碼

2021-10-01 04:12:21 字數 502 閱讀 7879

1.永久記住密碼

git config --global credential.helper store
會在使用者主目錄的.gitconfig檔案中加入下面的配置。如果沒有–global,則加在當前專案下的.git/config檔案中。

[credential]

helper = store

2.臨時記住密碼

採用預設的方式會記住密碼15分鐘

git config --global credential.helper cache
也可以自己指定時長(timeout單位為秒)

git config --global credential.helper 'cache -timeout=60'
3.錄入賬密

執行完上述任意一步驟後 還需執行一次推/拉(即觸發輸入賬密事件)才有效哦!

…如遇到其他情況再行補充

GIT無法記住賬戶密碼問題

最近,在公司ios 編譯的過程中,執行pod update的時候,從git裡面拉取 時候,總是報錯 fatal could not read username for no such file or directory 使用協議是https傳輸協議。根據提示判斷就是沒有記住git的賬戶和密碼引起的問...

git記住密碼

是不是受夠了http方式每次輸入使用者名稱和密碼?好吧下面說說解決這個問題的方法 方法一 git bash輸入命令 git config global credential.helper store ok,回車,這個時候已經記住了密碼,就是這樣,沒了。可能下一次還要密碼的情況,沒關係,在輸入一次,因...

Git記住密碼

每次提交 都要輸入使用者名稱密碼,十分麻煩,教大家怎麼讓git記住密碼。永久記住密碼git config global credential.helper store 會在使用者主目錄的.gitconfig檔案中生成下面的配置。credential helper store 如果沒有 global,...