学习如何处理包含不同(及可能有冲突)更改的多个分支。
当你更改 greet 分支时,其他人决定更新 master 分支。他们 添加了一个 README。
$ git checkout master
This is the Hello World example from the git tutorial.
$ git add README $ git commit -m "Added README"