2015-11-06 38 views
-1

我需要幫助當我嘗試拉時,我得到了這個錯誤。使用git拉得到錯誤128

enter image description here

不知道發生了什麼,以及如何解決它。

+1

請張貼'混帳的整個輸出狀態' – houtanb

+0

在問這裏之前,你有做過任何研究嗎?看[怎麼問](http://stackoverflow.com/help/how-to-ask) – jkalden

回答

0

這意味着你已經修改了git跟蹤的文件locales/en.json。您需要隱藏更改才能從服務器中引入更改。請嘗試以下操作:

git stash 
git pull 
git stash pop 
+0

隱藏pop意味着什麼? –

+0

您將裝入的文件放回工作區。 –

0

您在存儲庫中進行了本地更改,通過拉動,這些將被覆蓋。

簡單,peasy:

git add /your/files(或git add -A

git commit -m "Your commit message"

現在你可以運行git pull爲本地工作區是乾淨的:)

+0

我習慣承諾。我拉我得到了那個錯誤 –

+0

'git status'說什麼? –

+0

modified:locales/en.json –