Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-rebase(1) |
| 2 | ============= |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 7c73c66 | 2007-01-19 00:37:50 | [diff] [blame] | 6 | git-rebase - Forward-port local commits to the updated upstream head |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Junio C Hamano | 9dd8bb0 | 2007-02-12 07:15:35 | [diff] [blame^] | 10 | 'git-rebase' [-v] [--merge] [-C<n>] [--onto <newbase>] <upstream> [<branch>] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 11 | |
Junio C Hamano | 6959c6c | 2006-05-17 10:34:11 | [diff] [blame] | 12 | 'git-rebase' --continue | --skip | --abort |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 13 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 14 | DESCRIPTION |
| 15 | ----------- |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 16 | git-rebase replaces <branch> with a new branch of the same name. When |
| 17 | the --onto option is provided the new branch starts out with a HEAD equal |
| 18 | to <newbase>, otherwise it is equal to <upstream>. It then attempts to |
| 19 | create a new commit for each commit from the original <branch> that does |
| 20 | not exist in the <upstream> branch. |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 21 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 22 | It is possible that a merge failure will prevent this process from being |
| 23 | completely automatic. You will have to resolve any such merge failure |
Junio C Hamano | 6959c6c | 2006-05-17 10:34:11 | [diff] [blame] | 24 | and run `git rebase --continue`. Another option is to bypass the commit |
| 25 | that caused the merge failure with `git rebase --skip`. To restore the |
| 26 | original <branch> and remove the .dotest working files, use the command |
| 27 | `git rebase --abort` instead. |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 28 | |
| 29 | Note that if <branch> is not specified on the command line, the currently |
| 30 | checked out branch is used. |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 31 | |
| 32 | Assume the following history exists and the current branch is "topic": |
| 33 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 34 | ------------ |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 35 | A---B---C topic |
| 36 | / |
| 37 | D---E---F---G master |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 38 | ------------ |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 39 | |
Junio C Hamano | 2b13527 | 2006-03-18 07:45:42 | [diff] [blame] | 40 | From this point, the result of either of the following commands: |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 41 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 42 | |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 43 | git-rebase master |
| 44 | git-rebase master topic |
| 45 | |
| 46 | would be: |
| 47 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 48 | ------------ |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 49 | A'--B'--C' topic |
| 50 | / |
| 51 | D---E---F---G master |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 52 | ------------ |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 53 | |
Junio C Hamano | d8c9d43 | 2006-11-07 07:19:13 | [diff] [blame] | 54 | The latter form is just a short-hand of `git checkout topic` |
| 55 | followed by `git rebase master`. |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 56 | |
Junio C Hamano | d8c9d43 | 2006-11-07 07:19:13 | [diff] [blame] | 57 | Here is how you would transplant a topic branch based on one |
| 58 | branch to another, to pretend that you forked the topic branch |
| 59 | from the latter branch, using `rebase --onto`. |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 60 | |
Junio C Hamano | d8c9d43 | 2006-11-07 07:19:13 | [diff] [blame] | 61 | First let's assume your 'topic' is based on branch 'next'. |
| 62 | For example feature developed in 'topic' depends on some |
| 63 | functionality which is found in 'next'. |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 64 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 65 | ------------ |
Junio C Hamano | d8c9d43 | 2006-11-07 07:19:13 | [diff] [blame] | 66 | o---o---o---o---o master |
| 67 | \ |
| 68 | o---o---o---o---o next |
| 69 | \ |
| 70 | o---o---o topic |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 71 | ------------ |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 72 | |
Junio C Hamano | d8c9d43 | 2006-11-07 07:19:13 | [diff] [blame] | 73 | We would want to make 'topic' forked from branch 'master', |
| 74 | for example because the functionality 'topic' branch depend on |
| 75 | got merged into more stable 'master' branch, like this: |
| 76 | |
| 77 | ------------ |
| 78 | o---o---o---o---o master |
| 79 | | \ |
| 80 | | o'--o'--o' topic |
| 81 | \ |
| 82 | o---o---o---o---o next |
| 83 | ------------ |
| 84 | |
| 85 | We can get this using the following command: |
| 86 | |
| 87 | git-rebase --onto master next topic |
| 88 | |
| 89 | |
| 90 | Another example of --onto option is to rebase part of a |
| 91 | branch. If we have the following situation: |
| 92 | |
| 93 | ------------ |
| 94 | H---I---J topicB |
| 95 | / |
| 96 | E---F---G topicA |
| 97 | / |
| 98 | A---B---C---D master |
| 99 | ------------ |
| 100 | |
| 101 | then the command |
| 102 | |
| 103 | git-rebase --onto master topicA topicB |
| 104 | |
| 105 | would result in: |
| 106 | |
| 107 | ------------ |
| 108 | H'--I'--J' topicB |
| 109 | / |
| 110 | | E---F---G topicA |
| 111 | |/ |
| 112 | A---B---C---D master |
| 113 | ------------ |
| 114 | |
| 115 | This is useful when topicB does not depend on topicA. |
| 116 | |
Junio C Hamano | 42f855f | 2007-02-06 00:09:38 | [diff] [blame] | 117 | A range of commits could also be removed with rebase. If we have |
| 118 | the following situation: |
| 119 | |
| 120 | ------------ |
| 121 | E---F---G---H---I---J topicA |
| 122 | ------------ |
| 123 | |
| 124 | then the command |
| 125 | |
| 126 | git-rebase --onto topicA~5 topicA~2 topicA |
| 127 | |
| 128 | would result in the removal of commits F and G: |
| 129 | |
| 130 | ------------ |
| 131 | E---H'---I'---J' topicA |
| 132 | ------------ |
| 133 | |
| 134 | This is useful if F and G were flawed in some way, or should not be |
| 135 | part of topicA. Note that the argument to --onto and the <upstream> |
| 136 | parameter can be any valid commit-ish. |
| 137 | |
Junio C Hamano | f02e09f | 2006-03-27 07:51:03 | [diff] [blame] | 138 | In case of conflict, git-rebase will stop at the first problematic commit |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 139 | and leave conflict markers in the tree. You can use git diff to locate |
| 140 | the markers (<<<<<<) and make edits to resolve the conflict. For each |
| 141 | file you edit, you need to tell git that the conflict has been resolved, |
| 142 | typically this would be done with |
Junio C Hamano | f02e09f | 2006-03-27 07:51:03 | [diff] [blame] | 143 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 144 | |
| 145 | git update-index <filename> |
| 146 | |
| 147 | |
| 148 | After resolving the conflict manually and updating the index with the |
| 149 | desired resolution, you can continue the rebasing process with |
| 150 | |
| 151 | |
| 152 | git rebase --continue |
| 153 | |
Junio C Hamano | f02e09f | 2006-03-27 07:51:03 | [diff] [blame] | 154 | |
| 155 | Alternatively, you can undo the git-rebase with |
| 156 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 157 | |
| 158 | git rebase --abort |
Junio C Hamano | f02e09f | 2006-03-27 07:51:03 | [diff] [blame] | 159 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 160 | OPTIONS |
| 161 | ------- |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 162 | <newbase>:: |
| 163 | Starting point at which to create the new commits. If the |
| 164 | --onto option is not specified, the starting point is |
Junio C Hamano | 42f855f | 2007-02-06 00:09:38 | [diff] [blame] | 165 | <upstream>. May be any valid commit, and not just an |
| 166 | existing branch name. |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 167 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 168 | <upstream>:: |
Junio C Hamano | 42f855f | 2007-02-06 00:09:38 | [diff] [blame] | 169 | Upstream branch to compare against. May be any valid commit, |
| 170 | not just an existing branch name. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 171 | |
Junio C Hamano | 2b13527 | 2006-03-18 07:45:42 | [diff] [blame] | 172 | <branch>:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 173 | Working branch; defaults to HEAD. |
| 174 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 175 | --continue:: |
| 176 | Restart the rebasing process after having resolved a merge conflict. |
| 177 | |
| 178 | --abort:: |
| 179 | Restore the original branch and abort the rebase operation. |
| 180 | |
Junio C Hamano | 97f518c | 2006-06-22 19:49:35 | [diff] [blame] | 181 | --skip:: |
| 182 | Restart the rebasing process by skipping the current patch. |
Junio C Hamano | 97f518c | 2006-06-22 19:49:35 | [diff] [blame] | 183 | |
| 184 | --merge:: |
| 185 | Use merging strategies to rebase. When the recursive (default) merge |
| 186 | strategy is used, this allows rebase to be aware of renames on the |
| 187 | upstream side. |
| 188 | |
| 189 | -s <strategy>, \--strategy=<strategy>:: |
| 190 | Use the given merge strategy; can be supplied more than |
| 191 | once to specify them in the order they should be tried. |
| 192 | If there is no `-s` option, a built-in list of strategies |
| 193 | is used instead (`git-merge-recursive` when merging a single |
| 194 | head, `git-merge-octopus` otherwise). This implies --merge. |
| 195 | |
Junio C Hamano | fbe0052 | 2006-10-19 05:58:48 | [diff] [blame] | 196 | -v, \--verbose:: |
| 197 | Display a diffstat of what changed upstream since the last rebase. |
| 198 | |
Junio C Hamano | d333998 | 2007-02-09 08:38:48 | [diff] [blame] | 199 | -C<n>:: |
| 200 | Ensure at least <n> lines of surrounding context match before |
| 201 | and after each change. When fewer lines of surrounding |
| 202 | context exist they all must match. By default no context is |
| 203 | ever ignored. |
| 204 | |
Junio C Hamano | 97f518c | 2006-06-22 19:49:35 | [diff] [blame] | 205 | include::merge-strategies.txt[] |
| 206 | |
Junio C Hamano | 6112cad | 2006-05-02 07:28:06 | [diff] [blame] | 207 | NOTES |
| 208 | ----- |
| 209 | When you rebase a branch, you are changing its history in a way that |
| 210 | will cause problems for anyone who already has a copy of the branch |
| 211 | in their repository and tries to pull updates from you. You should |
| 212 | understand the implications of using 'git rebase' on a repository that |
| 213 | you share. |
| 214 | |
| 215 | When the git rebase command is run, it will first execute a "pre-rebase" |
| 216 | hook if one exists. You can use this hook to do sanity checks and |
| 217 | reject the rebase if it isn't appropriate. Please see the template |
| 218 | pre-rebase hook script for an example. |
| 219 | |
| 220 | You must be in the top directory of your project to start (or continue) |
| 221 | a rebase. Upon completion, <branch> will be the current branch. |
| 222 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 223 | Author |
| 224 | ------ |
| 225 | Written by Junio C Hamano <junkio@cox.net> |
| 226 | |
| 227 | Documentation |
| 228 | -------------- |
| 229 | Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. |
| 230 | |
| 231 | GIT |
| 232 | --- |
| 233 | Part of the gitlink:git[7] suite |
| 234 | |