git-rebase --continue | --skip | --abort
It is possible that a merge failure will prevent this process from being completely automatic. You will have to resolve any such merge failure and run git rebase --continue. Another option is to bypass the commit that caused the merge failure with git rebase --skip. To restore the original <branch> and remove the .dotest working files, use the command git rebase --abort instead.
Note that if <branch> is not specified on the command line, the currently checked out branch is used.
Assume the following history exists and the current branch is "topic":
A---B---C topic
/
D---E---F---G master
From this point, the result of either of the following commands:
git-rebase master git-rebase master topicwould be:
A'--B'--C' topic
/
D---E---F---G master
The latter form is just a short-hand of git checkout topic followed
by git rebase master.
Here is how you would transplant a topic branch based on one branch to another, to pretend that you forked the topic branch from the latter branch, using rebase --onto.
First let's assume your topic is based on branch next. For example feature developed in topic depends on some functionality which is found in next.
o---o---o---o---o master
\
o---o---o---o---o next
\
o---o---o topic
We would want to make topic forked from branch
master, for example because the functionality topic
branch depend on got merged into more stable master branch,
like this:
o---o---o---o---o master
| \
| o'--o'--o' topic
\
o---o---o---o---o next
We can get this using the following command:
git-rebase --onto master next topicAnother example of --onto option is to rebase part of a branch. If we have the following situation:
H---I---J topicB
/
E---F---G topicA
/
A---B---C---D master
then the command
git-rebase --onto master topicA topicBwould result in:
H'--I'--J' topicB
/
| E---F---G topicA
|/
A---B---C---D master
This is useful when topicB does not depend on topicA.
In case of conflict, git-rebase will stop at the first problematic commit and leave conflict markers in the tree. You can use git diff to locate the markers (<<<<<<) and make edits to resolve the conflict. For each file you edit, you need to tell git that the conflict has been resolved, typically this would be done with
git update-index <filename>After resolving the conflict manually and updating the index with the desired resolution, you can continue the rebasing process with
git rebase --continueAlternatively, you can undo the git-rebase with
git rebase --abort
When the git rebase command is run, it will first execute a "pre-rebase" hook if one exists. You can use this hook to do sanity checks and reject the rebase if it isn't appropriate. Please see the template pre-rebase hook script for an example.
You must be in the top directory of your project to start (or continue) a rebase. Upon completion, <branch> will be the current branch.