回答
這意味着你已經修改了git跟蹤的文件locales/en.json
。您需要隱藏更改才能從服務器中引入更改。請嘗試以下操作:
git stash
git pull
git stash pop
隱藏pop意味着什麼? –
您將裝入的文件放回工作區。 –
您在存儲庫中進行了本地更改,通過拉動,這些將被覆蓋。
簡單,peasy:
git add /your/files
(或git add -A
)
git commit -m "Your commit message"
現在你可以運行git pull
爲本地工作區是乾淨的:)
我習慣承諾。我拉我得到了那個錯誤 –
'git status'說什麼? –
modified:locales/en.json –
- 1. git pull後得到錯誤
- 2. 奇怪的鮑爾/ Git錯誤(錯誤代碼#128,不能chdir到'Y:/')
- 3. 從smartgit Git拉/推錯誤
- 4. 錯誤做的git拉
- 5. Git推送大文件得到錯誤
- 6. 使用timezone.js得到錯誤
- 7. 得到錯誤使用Ruby
- 8. 得到錯誤使用TabHost
- 9. 拉動Git錯誤「錯誤:無法找到.....」
- 10. 得到錯誤輸出(拉馬努金)
- 11. 卡桑德拉查詢得到錯誤
- 12. 創建下拉使用MySQL,但得到的錯誤
- 13. git-tfs克隆失敗,錯誤代碼爲128
- 14. C#AES-128 CFB錯誤
- 15. ASP.Net錯誤代碼128
- 16. 詹金斯錯誤128/Git的錯誤403:詹金斯無法連接到我的倉庫到位桶
- 17. EditorTemplate下拉得到錯誤的ID和不能得到驗證
- 18. 的Git分支不斷得到上拉
- 19. git的錯誤使用--init
- 20. SSL3錯誤使用Git 2.5
- 21. GIT使用Unfuddle錯誤
- 22. 使用應用re.sub並得到錯誤
- 23. 使用SmartGit在本地設置Git時發生推/拉錯誤
- 24. 使用git推拉時出現SSL錯誤
- 25. GIT拉錯誤 - 遠程對象損壞
- 26. GIT - 獲取'早期eof'錯誤拉動
- 27. 推/拉git時出現錯誤
- 28. 通過ssh的git拉給錯誤
- 29. git在python結構中拉出錯誤
- 30. 錯誤運行git拉出身主
請張貼'混帳的整個輸出狀態' – houtanb
在問這裏之前,你有做過任何研究嗎?看[怎麼問](http://stackoverflow.com/help/how-to-ask) – jkalden