最近, 在公司ios**編譯的過程中,執行pod update的時候,從git裡面拉取**時候,總是報錯:fatal:could not read username for '':no such file or directory
,使用協議是https傳輸協議。
根據提示判斷就是沒有記住git的賬戶和密碼引起的問題。
首先進行了 賬戶的全域性設定:
git config --
global
user.name
"***x"
git config --
global
user.email
"***[email protected]"
然後執行,發現問題還是存在,然後搜尋一下記住賬戶密碼的全域性配置:
git
config
--global credential.helper store
然後執行構建,發現問題同樣存在,後來在coding 官方上面找到一篇說明文件,試了有效。
有兩種方法:
執行後在 ~/.gitconfig 檔案會多出下面配置項:
credential.helper = store
希望能對遇到同樣的問題的小夥伴 有幫助!!!當然可以直接使用ssh的方式。
Git提交記住賬戶密碼
1.永久記住密碼git config global credential.helper store會在使用者主目錄的.gitconfig檔案中加入下面的配置。如果沒有 global,則加在當前專案下的.git config檔案中。credential helper store2.臨時記住密碼 採用預...
git記住密碼
是不是受夠了http方式每次輸入使用者名稱和密碼?好吧下面說說解決這個問題的方法 方法一 git bash輸入命令 git config global credential.helper store ok,回車,這個時候已經記住了密碼,就是這樣,沒了。可能下一次還要密碼的情況,沒關係,在輸入一次,因...
Git記住密碼
每次提交 都要輸入使用者名稱密碼,十分麻煩,教大家怎麼讓git記住密碼。永久記住密碼git config global credential.helper store 會在使用者主目錄的.gitconfig檔案中生成下面的配置。credential helper store 如果沒有 global,...