git merge git pull時候遇到衝突解決辦法git stash

在使用git pull代碼時,常常會碰到有衝突的狀況,提示以下信息:git

error: Your local changes to 'c/environ.c' would be overwritten by merge.  Aborting.
Please, commit your changes or stash them before you can merge.

這個意思是說更新下來的內容和本地修改的內容有衝突,先提交你的改變或者先將本地修改暫時存儲起來。app

處理的方式很是簡單,主要是使用git stash命令進行處理,分紅如下幾個步驟進行處理。blog

一、先將本地修改存儲起來it

$ git stash

這樣本地的全部修改就都被暫時存儲起來 。io

 $ git stash list                 能夠看到保存的信息:class

git stash暫存修改

git stash暫存修改stream

其中stash@{0}就是剛纔保存的標記。date

二、pull內容im

暫存了本地修改以後,就能夠pull了。error

$ git pull

三、還原暫存的內容

$ git stash pop stash@{0}

系統提示以下相似的信息:

Auto-merging c/environ.c
CONFLICT (content): Merge conflict in c/environ.c

意思就是系統自動合併修改的內容,可是其中有衝突,須要解決其中的衝突。

四、解決文件中衝突的的部分

打開衝突的文件,會看到相似以下的內容:

 

git衝突內容

git衝突內容


其中Updated upstream 和=====之間的內容就是pull下來的內容,====和stashed changes之間的內容就是本地修改的內容。碰到這種狀況,git也不知道哪行內容是須要的,因此要自行肯定須要的內容。

 

解決完成以後,就能夠正常的提交了。

 

5 刪除stashgit stash drop <stash@{id}>  若是不加stash編號,默認的就是刪除最新的,也就是編號爲0的那個,加編號就是刪除指定編號的stash。git  stash clear 是清除全部stash,整個世界一會兒清淨了!

 

6 git stash pop  與 git stash apply <stash@{id}> 的區別。

當我使用git stash pop 和 git stash apply 幾回之後,我發現stash  list 好像比我預計的多了幾個stash。因而我便上網去了解了一下這兩個命令的區別。原來git stash pop stash@{id}命令會在執行後將對應的stash id 從stash list裏刪除,而 git stash apply stash@{id} 命令則會繼續保存stash id。對於有點強迫症的我來講,是容不下愈來愈多的陳舊stash id 仍然存在的,因此我更習慣於用git stash pop 命令。

 

http://www.01happy.com/git-resolve-conflicts/

相關文章
相關標籤/搜索