# 切换回 `master` 分支
$ git checkout master
Switched to branch 'master'
Your branch is up to date with 'origin/master'.
# 追加新内容到 `README.md` 文件
$ echo "learn git ,share git" >> README.md
# 提交到版本库
$ git add README.md
$ git commit -m "modify README"
[master 3931d48] modify README
1 file changed, 1 insertion(+)
$
(3). 切换回 snow 分支,整理提交历史(git rebase)到 master 分支
# 切换到 `snow` 分支
$ git checkout snow
Switched to branch 'snow'
# 改变基础版本(父版本),简称"变基"
$ git rebase master
HEAD is up to date.
# 当前提交历史线
$ git log --pretty=oneline --graph --abbrev-commit
* e92f068 (HEAD) rebase
* 72f4c01 fix confict about happy coding
* 3931d48 (master) modify README
* e60c8ad (origin/master, origin/HEAD, dev) fix bug about issue-110
* 3fe94c0 fast forward
* 22fbef7 git merge --no-ff dev
|\
| * 44d68f6 git checkout -b dev
|/
* 3b8f434 fix conflict
|\
| * 0fe95f8 git commit c2
* | 0949cc3 git commit c3
|/
* 5c482cd git commit c1
* 413a4d1 see https://gitbook.prlrr.com/git/usage/branch-overview.html
* 9c30e50 learn git branch
* b3d8193 see https://gitbook.prlrr.com/git/usage/remote-repository.html
* 8e62564 add test.txt
* 9b196aa Initial commit
$
(4). 切换回 master 主干分支再次变基合并 snow 分支
# 切换回 `master` 分支
$ git checkout master
Warning: you are leaving 2 commits behind, not connected to
any of your branches:
e92f068 rebase
72f4c01 fix confict about happy coding
If you want to keep them by creating a new branch, this may be a good time
to do so with:
git branch <new-branch-name> e92f068
Switched to branch 'master'
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
# 改变父版本为 `snow` 分支指向的版本
$ git rebase snow
First, rewinding head to replay your work on top of it...
Applying: modify README
$