git rebase 使用场景之 分支变基

vim main.c
git init

// edit source file,  add "master commit 1"
git add .
git commit -m "master commit 1"

// edit source file,  add "master commit 2"
git add .
git commit -m "master commit 2"


git branch dev
git checkout dev

// edit source file, add "dev commit 1"
git add .
git commit -m "dev commit 1"

// edit source file, add "dev commit 2"
git add .
git commit -m "dev commit 2"


git checkout master

// edit source file, add "master commit 3"
git add .
git commit -m "master commit 3"

// edit source file, add "master commit 4"
git add .
git commit -m "master commit 4"


git checkout dev
git rebase master
    First, rewinding head to replay your work on top of it...
    Applying: dev commit 1
    Using index info to reconstruct a base tree...
    M       main.c
    Falling back to patching base and 3-way merge...
    Auto-merging main.c
    CONFLICT (content): Merge conflict in main.c
    error: Failed to merge in the changes.
    hint: Use 'git am --show-current-patch' to see the failed patch
    Patch failed at 0001 dev commit 1

    Resolve all conflicts manually, mark them as resolved with
    "git add/rm <conflicted_files>", then run "git rebase --continue".
    You can instead skip this commit: run "git rebase --skip".
    To abort and get back to the state before "git rebase", run "git rebase --abort".

// manually solve conflict

git add .
git rebase --continue
    main.c: needs merge
    You must edit all merge conflicts and then
    mark them as resolved using git add
git status
    rebase in progress; onto b23432b
    You are currently rebasing branch 'dev' on 'b23432b'.
      (fix conflicts and then run "git rebase --continue")
      (use "git rebase --skip" to skip this patch)
      (use "git rebase --abort" to check out the original branch)

    Unmerged paths:
      (use "git reset HEAD <file>..." to unstage)
      (use "git add <file>..." to mark resolution)

            both modified:   main.c

    no changes added to commit (use "git add" and/or "git commit -a")

// manually solve conflict

git add .
git rebase  --continue
    Applying: dev commit 2

git log   --oneline
    3c856fe (HEAD -> dev) dev commit 2
    e10a401 dev commit 1
    b23432b (master) master commit 4
    60b0f0a master commit 3
    f90b825 master commit 2
    c543238 master commit 1


git checkout  master
git merge dev
git log --oneline
    3c856fe (HEAD -> master, dev) dev commit 2
    e10a401 dev commit 1
    b23432b master commit 4
    60b0f0a master commit 3
    f90b825 master commit 2
    c543238 master commit 1





一、基本

git rebase用于把一个分支的修改合并到当前分支。

假设你现在基于远程分支"origin",创建一个叫"mywork"的分支。

$ git checkout -b mywork origin

假设远程分支"origin"已经有了2个提交,如图

现在我们在这个分支做一些修改,然后生成两个提交(commit).

$ vi file.txt

$ git commit

$ vi otherfile.txt

$ git commit

...

但是与此同时,有些人也在"origin"分支上做了一些修改并且做了提交了. 这就意味着"origin"和"mywork"这两个分支各自"前进"了,它们之间"分叉"了。

在这里,你可以用"pull"命令把"origin"分支上的修改拉下来并且和你的修改合并; 结果看起来就像一个新的"合并的提交"(merge commit):

但是,如果你想让"mywork"分支历史看起来像没有经过任何合并一样,你也许可以用 git rebase:

$ git checkout mywork

$ git rebase origin

这些命令会把你的"mywork"分支里的每个提交(commit)取消掉,并且把它们临时 保存为补丁(patch)(这些补丁放到".git/rebase"目录中),然后把"mywork"分支更新 为最新的"origin"分支,最后把保存的这些补丁应用到"mywork"分支上。

当'mywork'分支更新之后,它会指向这些新创建的提交(commit),而那些老的提交会被丢弃。 如果运行垃圾收集命令(pruning garbage collection), 这些被丢弃的提交就会删除. (请查看 git gc)

二、解决冲突

在rebase的过程中,也许会出现冲突(conflict). 在这种情况,Git会停止rebase并会让你去解决 冲突;在解决完冲突后,用"git-add"命令去更新这些内容的索引(index), 然后,你无需执行 git-commit,只要执行:

$ git rebase --continue

这样git会继续应用(apply)余下的补丁。

在任何时候,你可以用--abort参数来终止rebase的行动,并且"mywork" 分支会回到rebase开始前的状态。

$ git rebase --abort

三、git rebase和git merge的区别

现在我们可以看一下用合并(merge)和用rebase所产生的历史的区别:

当我们使用Git log来参看commit时,其commit的顺序也有所不同。

假设C3提交于9:00AM,C5提交于10:00AM,C4提交于11:00AM,C6提交于12:00AM,

对于使用git merge来合并所看到的commit的顺序(从新到旧)是:C7 ,C6,C4,C5,C3,C2,C1

对于使用git rebase来合并所看到的commit的顺序(从新到旧)是:C7 ,C6‘,C5',C4,C3,C2,C1

 因为C6'提交只是C6提交的克隆,C5'提交只是C5提交的克隆,

从用户的角度看使用git rebase来合并后所看到的commit的顺序(从新到旧)是:C7 ,C6,C5,C4,C3,C2,C1

 另外,我们在使用git pull命令的时候,可以使用--rebase参数,即git pull --rebase,这里表示把你的本地当前分支里的每个提交(commit)取消掉,并且把它们临时 保存为补丁(patch)(这些补丁放到".git/rebase"目录中),然后把本地当前分支更新 为最新的"origin"分支,最后把保存的这些补丁应用到本地当前分支上。

关于git pull的更多内容请参考《git pull简介

Logo

瓜分20万奖金 获得内推名额 丰厚实物奖励 易参与易上手

更多推荐