2015年4月21日星期二

Git_008:学习笔记之八:解决冲突 (摘录+整理)

当两个分支都修改了同一个文件的同一行时,合并分支会出现冲突,请看下面的例子。

创建新的feature1分支,然后在新分支上开发:
$ git checkout -b feature1
Switched to a new branch 'feature1'
修改readme.txt最后一行,改为:
Creating a new branch is quick AND simple.
在feature1分支上提交:
$ git add readme.txt
$ git commit -m "AND simple"
[feature1 ae282f1] AND simple
 1 file changed, 1 insertion(+), 1 deletion(-)
切换到master分支:
$ git checkout master
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 1 commit.
  (use "git push" to publish your local commits)
Git提示我们当前master分支比远程的master分支要超前1个提交。
在master分支上把readme.txt文件的最后一行改为:
Creating a new branch is quick & simple.
提交:
$ git add readme.txt
$ git commit -m "& simple"
[master d31216a] & simple
 1 file changed, 1 insertion(+), 1 deletion(-)
现在,master分支和feature1分支各自都分别有新的提交,变成了这样:



这种情况下,Git无法执行“快速合并”,只能试图把各自的修改合并起来,但这种合并就可能会有冲突,我们试试看:
$ git merge feature1
Auto-merging readme.txt
CONFLICT (content): Merge conflict in readme.txt
Automatic merge failed; fix conflicts and then commit the result.
果然冲突了!Git告诉我们,readme.txt文件存在冲突,必须手动解决冲突后再提交。git status也可以告诉我们冲突的文件:
$ git status
On branch master
Your branch is ahead of 'origin/master' by 2 commits.
  (use "git push" to publish your local commits)
You have unmerged paths.
  (fix conflicts and run "git commit")

Unmerged paths:
  (use "git add ..." to mark resolution)

    both modified:   readme.txt

no changes added to commit (use "git add" and/or "git commit -a")
查看readme.txt内容:
$ cat readme.txt
Git is a distributed version control system.
Git is free software distributed under the GPL.
Git has a mutable index called stage.
Git tracks changes of files.
<<<<<<< HEAD
Creating a new branch is quick & simple.
=======
Creating a new branch is quick AND simple.
>>>>>>> feature1
Git用<<<<<<<,=======,>>>>>>>标记出不同分支的内容。
现在只能手工解决冲突,手工修改readme.txt文件内容,冲突的内容修改如下:
Creating a new branch is quick and simple.
再提交:
$ git add readme.txt
$ git commit -m "conflict fixed"
[master 5ad1450] conflict fixed
现在,master分支和feature1分支变成了下图所示:


用带参数的git log也可以看到分支的合并情况:
$ git log --graph --pretty=oneline --abbrev-commit
*   5ad1450 conflict fixed
|\ 
| * ae282f1 AND simple
* | d31216a & simple
|/ 
* def512d branch test
* 52b439d add maping.txt
* 0c8b8f6 add test.txt
* c14c0fd remove test.txt
* e963d7c add test.txt
* 50f6556 git tracks changes of file
* 29b3a6f git tracks changes
* 35df8cb understand how stage works
* a98cca6 append GPL
* 6719ef3 add distributed
* ee16322 wrote a readme file
现在,删除feature1分支:
$ git branch -d feature1
Deleted branch feature1 (was ae282f1).

没有评论: