合併發生衝突了,怎麼辦? - 為你自己學Git | 高見龍 - gitbook.tw
文章推薦指數: 80 %
git merge dog Auto-merging index.html CONFLICT (content): Merge conflict in index.html ... 這問題看來是溝通不良造成的,所以遇到問題,當然是解決有問題的人…
讓您精通業界最常用Git版本控制!Git線上直播課程熱烈報名中現在就報名!學員評價
為你自己學Git
目錄
勘誤表
電子書
單元劇
面試題
系列文章
練習場
關於我
←上一章:另一種合併方式(使用rebase)
下一章:【冷知識】為什麼大家都說在Git開分支「很便宜」?→
合併發生衝突了,怎麼辦?
Git有能力幫忙檢查簡單的衝突,所以並不是改到同一個檔案就一定會發生衝突,但改到同一行就沒辦法了。
假設我在cat分支修改了index.html的內容如下:
但是index.html這個檔案因為兩邊都修改到了,所以Git把它標記成「bothmodified」狀態。
使用SourceTree來看: 可以看到那個有衝突的檔案用驚嘆號標記出來了。
解決問題 看看那個index.html的內容長什麼樣子:
那要解決這個問題?這問題看來是溝通不良造成的,所以遇到問題,當然是解決有問題的人…不是,是把兩邊的人請過來討論一下,到底是該用誰的code。
經過一番討論後,決定還是要採納cat分支的內容,順便把那些標記修掉,最後內容如下:
但Rebase的過程如果發生衝突會跟一般的合併不太一樣。
例如: $gitrebasedog First,rewindingheadtoreplayyourworkontopofit... Applying:addcat1 Applying:addcat2 Applying:add123 Applying:updateindex Usingindexinfotoreconstructabasetree... M index.html Fallingbacktopatchingbaseand3-waymerge... Auto-mergingindex.html CONFLICT(content):Mergeconflictinindex.html error:Failedtomergeinthechanges. Patchfailedat0004updateindex Thecopyofthepatchthatfailedisfoundin:.git/rebase-apply/patch Whenyouhaveresolvedthisproblem,run"gitrebase--continue". Ifyouprefertoskipthispatch,run"gitrebase--skip"instead. Tocheckouttheoriginalbranchandstoprebasing,run"gitrebase--abort". 這時候其實是卡在一半,從SourceTree可以看得更清楚: HEAD現在並沒有指著任何一個分支,它現在有點像是在修改歷史的時候卡在某個時空縫隙裡了(其實是3a5a802這個Commit)。
看一下目前的狀態: $gitstatus rebaseinprogress;ontoed06d49 Youarecurrentlyrebasingbranch'cat'on'ed06d49'. (fixconflictsandthenrun"gitrebase--continue") (use"gitrebase--skip"toskipthispatch) (use"gitrebase--abort"tocheckouttheoriginalbranch) Unmergedpaths: (use"gitresetHEAD
跟上面提到的方法一樣,把index.html有衝突的內容修正完成後,把它加回暫存區: $gitaddindex.html 搞定,接著繼續完成剛剛中斷的Rebase: $gitrebase--continue Applying:updateindex 這樣就算完成Rebase了。
那如果不是文字檔的衝突怎麼解? 上面的index.html因為是文字檔案,所以Git可以標記出發生衝突的點在哪些行,我們用肉眼都還能看得出來大概該怎麼解決,但如果是像圖片檔之類的二進位檔怎麼辦?例如在cat分支跟dog分支,同時都加了一張叫做cute_animal.jpg的圖片,合併的時候出現衝突的訊息: $gitmergedog warning:Cannotmergebinaryfiles:cute_animal.jpg(HEADvs.dog) Auto-mergingcute_animal.jpg CONFLICT(add/add):Mergeconflictincute_animal.jpg Automaticmergefailed;fixconflictsandthencommittheresult. 這下糟了,要把兩邊的人馬請過來,討論到底誰才是最可愛的動物。
討論後決定貓才是這世上最可愛的動物,所以決定要用cat分支的檔案: $gitcheckout--ourscute_animal.jpg 如果是要用對方(dog分支),則是使用--theirs參數: $gitcheckout--theirscute_animal.jpg 決定之後,就跟前面一樣,加到暫存區,準備Commit,然後結束這一回合。
如果使用SourceTree,可在那個有衝突的檔案上按滑鼠右鍵,選擇「ResolveConflicts」→「ResolveUsing‘Mine’」等同於上面使用--ours參數的效果: 如果是選擇「ResolveUsing‘Theirs’」則等同使用--theirs參數。
←上一章:另一種合併方式(使用rebase) 下一章:【冷知識】為什麼大家都說在Git開分支「很便宜」?→ Comments
延伸文章資訊
- 1你一定會遇到衝突(git conflict)
android studio內建解決衝突的工具,VCS ->Git->Resolve Conflict. 從下圖會列出衝突的檔案有哪些,可以點擊它看進去看衝突的內容.
- 2合併發生衝突了,怎麼辦? - 為你自己學Git | 高見龍 - gitbook.tw
git merge dog Auto-merging index.html CONFLICT (content): Merge conflict in index.html ... 這問題看來是...
- 3解决冲突- 廖雪峰的官方网站
git merge feature1 Auto-merging readme.txt CONFLICT (content): Merge conflict in readme.txt Autom...
- 4git遇到衝突了怎麼辦?別緊張,解衝後就好了。
When we use git merge to merge two branches, git has its own way to determine whether there is a ...
- 5Git 版本控制系統- 分支合併衝突與解決辦法 - Roya's Blog
這一次Push 就成功了,之前我們有說過 git pull 主要會將 git fetch 的內容直接執行 git merge ,這也才導致直接跳出合併的訊息視窗,這樣子看起來是不是 ...