2016-03-08 152 views
0

我試圖推動我的提交到遠程git回購。然而我收到以下錯誤:推失敗的git:'憑證緩存'不是一個git命令

git: 'credential-cache' is not a git command. See 'git --help'. 
git credential-'cache store: -c: line 0: unexpected EOF while looking for matching `'' 
git credential-'cache store: -c: line 1: syntax error: unexpected end of file 
fatal: my_branch cannot be resolved to branch. 

我希望它是因爲我,因爲我最後推運行以下命令:

git config --global credential.helper cache 
git config credential.helper 'cache --timeout=3600' 

這是爲了減少我不必增加之間的時間企圖在我的憑據。

我在git config --global -e中刪除了對此的引用,但我仍然遇到此問題? 我該如何解決這個問題?

+0

你可以添加你想'push'的命令? – WisdmLabs

回答

0

試試這個:

git config --global --unset-all credential.helper 
git config --unset-all credential.helper 
+1

沒有關於效果的解釋,possbile考慮等,代碼是不是很有用。 –