2015-12-29 105 views
0

我最近試圖通過github桌面應用程序將我的本地github分支恢復到早期版本。它給我的錯誤github自動生成的評論

error: revert is not possible because you have unmerged files. 
hint: Fix them up in the work tree, and then use 'git add/rm <file>' 
hint: as appropriate to mark resolution and make a commit. 
fatal: revert failed 
(128) 

,然後當我在Eclipse中打開了我的項目,我得到了這樣的議論

<<<<<<< HEAD 

and 

======= 
>>>>>>> parent of [something]... Merge branch 'master' into robertsBranch 

,這些都是造成種種語法錯誤。我如何撤銷這個,只需返回到我的分支的以前版本,而不會產生這些錯誤生成的評論,並沒有錯誤消息。是否有可能回溯到github分支?

回答

1

如何撤消此操作,只需返回到以前版本的分支,而不會產生這些錯誤,並且沒有錯誤消息。

這些都不是評論。它們是merge conflict indicators,顯示合併衝突存在的位置。

是否有可能回到與Github分支時間?

如您收到的錯誤消息所示,當您試圖合併masterrobertsBranch時,會出現這些衝突。您必須決定合併是否重要(在這種情況下,您必須是manually resolve the conflicts)或者不需要(在這種情況下,您可以abort the merge並繼續您的revert)。