3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE
='[--interactive | -i] [-v] [--onto <newbase>] <upstream> [<branch>]'
7 LONG_USAGE
='git-rebase replaces <branch> with a new branch of the
8 same name. When the --onto option is provided the new branch starts
9 out with a HEAD equal to <newbase>, otherwise it is equal to <upstream>
10 It then attempts to create a new commit for each commit from the original
11 <branch> that does not exist in the <upstream> branch.
13 It is possible that a merge failure will prevent this process from being
14 completely automatic. You will have to resolve any such merge failure
15 and run git rebase --continue. Another option is to bypass the commit
16 that caused the merge failure with git rebase --skip. To restore the
17 original <branch> and remove the .git/rebase-apply working files, use the
18 command git rebase --abort instead.
20 Note that if <branch> is not specified on the command line, the
21 currently checked out branch is used.
23 Example: git-rebase master~1 topic
25 A---B---C topic A'\''--B'\''--C'\'' topic
27 D---E---F---G master D---E---F---G master
33 set_reflog_action rebase
37 OK_TO_SKIP_PRE_REBASE
=
39 When you have resolved this problem run \"git rebase --continue\".
40 If you would prefer to skip this patch, instead run \"git rebase --skip\".
41 To restore the original branch and stop rebasing run \"git rebase --abort\".
46 dotest
="$GIT_DIR"/rebase-merge
52 test -n "$prev_head" || die
"prev_head must be defined"
53 test -d "$dotest" || die
"$dotest directory does not exist"
55 unmerged
=$
(git ls-files
-u)
56 if test -n "$unmerged"
58 echo "You still have unmerged paths in your index"
59 echo "did you forget to use git add?"
63 cmt
=`cat "$dotest/current"`
64 if ! git diff-index
--quiet --ignore-submodules HEAD
--
66 if ! git commit
--no-verify -C "$cmt"
68 echo "Commit failed, please do not call \"git commit\""
69 echo "directly, but instead do one of the following: "
72 printf "Committed: %0${prec}d " $msgnum
74 printf "Already applied: %0${prec}d " $msgnum
76 git rev-list
--pretty=oneline
-1 "$cmt" |
sed -e 's/^[^ ]* //'
78 prev_head
=`git rev-parse HEAD^0`
79 # save the resulting commit so we can read-tree on it later
80 echo "$prev_head" > "$dotest/prev_head"
82 # onto the next patch:
83 msgnum
=$
(($msgnum + 1))
84 echo "$msgnum" >"$dotest/msgnum"
88 cmt
="$(cat "$dotest/cmt.
$1")"
89 echo "$cmt" > "$dotest/current"
90 hd
=$
(git rev-parse
--verify HEAD
)
91 cmt_name
=$
(git symbolic-ref HEAD
2> /dev
/null ||
echo HEAD
)
92 msgnum
=$
(cat "$dotest/msgnum")
93 end
=$
(cat "$dotest/end")
94 eval GITHEAD_
$cmt='"${cmt_name##refs/heads/}~$(($end - $msgnum))"'
95 eval GITHEAD_
$hd='$(cat "$dotest/onto_name")'
96 export GITHEAD_
$cmt GITHEAD_
$hd
97 git-merge-
$strategy "$cmt^" -- "$hd" "$cmt"
101 unset GITHEAD_
$cmt GITHEAD_
$hd
109 echo "Strategy: $rv $strategy failed, try another" 1>&2
113 die
"Unknown exit code ($rv) from command:" \
114 "git-merge-$strategy $cmt^ -- HEAD $cmt"
119 move_to_original_branch
() {
120 test -z "$head_name" &&
121 head_name
="$(cat "$dotest"/head-name)" &&
122 onto
="$(cat "$dotest"/onto)" &&
123 orig_head
="$(cat "$dotest"/orig-head)"
126 message
="rebase finished: $head_name onto $onto"
127 git update-ref
-m "$message" \
128 $head_name $
(git rev-parse HEAD
) $orig_head &&
129 git symbolic-ref HEAD
$head_name ||
130 die
"Could not move back to $head_name"
136 move_to_original_branch
146 interactive_rebase
=explicit
149 -p|
--preserve-merges)
150 interactive_rebase
=implied
156 if [ "$interactive_rebase" = implied
]; then
161 test -n "$interactive_rebase" ||
test -f "$dotest"/interactive
164 run_pre_rebase_hook
() {
165 if test -z "$OK_TO_SKIP_PRE_REBASE" &&
166 test -x "$GIT_DIR/hooks/pre-rebase"
168 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
{
169 echo >&2 "The pre-rebase hook refused to rebase."
175 test -f "$GIT_DIR"/rebase-apply
/applying
&&
176 die
'It looks like git-am is in progress. Cannot rebase.'
178 is_interactive
"$@" && exec git-rebase--interactive
"$@"
182 test -d "$dotest" -o -d "$GIT_DIR"/rebase-apply || usage
183 test -d "$dotest" -o -f "$GIT_DIR"/rebase-apply
/rebasing
&&
184 die
'A rebase is in progress, try --continue, --skip or --abort.'
185 die
"No arguments given and $GIT_DIR/rebase-apply already exists."
192 OK_TO_SKIP_PRE_REBASE
=yes
195 test -d "$dotest" -o -d "$GIT_DIR"/rebase-apply ||
196 die
"No rebase in progress?"
198 git diff-files
--quiet --ignore-submodules ||
{
199 echo "You must edit all merge conflicts and then"
200 echo "mark them as resolved using git add"
205 prev_head
=$
(cat "$dotest/prev_head")
206 end
=$
(cat "$dotest/end")
207 msgnum
=$
(cat "$dotest/msgnum")
208 onto
=$
(cat "$dotest/onto")
210 while test "$msgnum" -le "$end"
218 head_name
=$
(cat "$GIT_DIR"/rebase-apply
/head-name
) &&
219 onto
=$
(cat "$GIT_DIR"/rebase-apply
/onto
) &&
220 orig_head
=$
(cat "$GIT_DIR"/rebase-apply
/orig-head
) &&
221 git am
--resolved --3way --resolvemsg="$RESOLVEMSG" &&
222 move_to_original_branch
226 test -d "$dotest" -o -d "$GIT_DIR"/rebase-apply ||
227 die
"No rebase in progress?"
229 git
reset --hard HEAD ||
exit $?
233 prev_head
=$
(cat "$dotest/prev_head")
234 end
=$
(cat "$dotest/end")
235 msgnum
=$
(cat "$dotest/msgnum")
236 msgnum
=$
(($msgnum + 1))
237 onto
=$
(cat "$dotest/onto")
238 while test "$msgnum" -le "$end"
246 head_name
=$
(cat "$GIT_DIR"/rebase-apply
/head-name
) &&
247 onto
=$
(cat "$GIT_DIR"/rebase-apply
/onto
) &&
248 orig_head
=$
(cat "$GIT_DIR"/rebase-apply
/orig-head
) &&
249 git am
-3 --skip --resolvemsg="$RESOLVEMSG" &&
250 move_to_original_branch
254 test -d "$dotest" -o -d "$GIT_DIR"/rebase-apply ||
255 die
"No rebase in progress?"
260 move_to_original_branch
262 dotest
="$GIT_DIR"/rebase-apply
263 move_to_original_branch
265 git
reset --hard $
(cat "$dotest/orig-head")
270 test 2 -le "$#" || usage
274 -M|
-m|
--m|
--me|
--mer|
--merg|
--merge)
277 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
278 --strateg=*|
--strategy=*|\
279 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
282 strategy
=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
295 git_am_opt
="$git_am_opt $1"
298 git_am_opt
="$git_am_opt $1"
310 # Make sure we do not have $GIT_DIR/rebase-apply
311 if test -z "$do_merge"
313 if mkdir
"$GIT_DIR"/rebase-apply
2>/dev
/null
315 rmdir "$GIT_DIR"/rebase-apply
318 It seems that I cannot create a rebase-apply directory, and
319 I wonder if you are in the middle of patch application or another
320 rebase. If that is not the case, please
321 rm -fr '"$GIT_DIR"'/rebase-apply
322 and run me again. I am stopping in case you still have something
329 die
"previous rebase directory $dotest still exists." \
330 'Try git rebase (--continue | --abort | --skip)'
334 # The tree must be really really clean.
335 git update-index
--ignore-submodules --refresh ||
exit
336 diff=$
(git diff-index
--cached --name-status -r --ignore-submodules HEAD
--)
338 ?
*) echo "cannot rebase: your index is not up-to-date"
344 # The upstream head must be given. Make sure it is valid.
346 upstream
=`git rev-parse --verify "${upstream_name}^0"` ||
347 die
"invalid upstream $upstream_name"
349 # Make sure the branch to rebase onto is valid.
350 onto_name
=${newbase-"$upstream_name"}
351 onto
=$
(git rev-parse
--verify "${onto_name}^0") ||
exit
353 # If a hook exists, give it a chance to interrupt
354 run_pre_rebase_hook
${1+"$@"}
356 # If the branch to rebase is given, that is the branch we will rebase
357 # $branch_name -- branch being rebased, or HEAD (already detached)
358 # $orig_head -- commit object name of tip of the branch before rebasing
359 # $head_name -- refs/heads/<that-branch> or "detached HEAD"
363 # Is it "rebase other $branchname" or "rebase other $commit"?
367 if git show-ref
--verify --quiet -- "refs/heads/$2" &&
368 branch
=$
(git rev-parse
--verify "refs/heads/$2" 2>/dev
/null
)
370 head_name
="refs/heads/$2"
371 elif branch
=$
(git rev-parse
--verify "$2" 2>/dev
/null
)
373 head_name
="detached HEAD"
379 # Do not need to switch branches, we are already on it.
380 if branch_name
=`git symbolic-ref -q HEAD`
382 head_name
=$branch_name
383 branch_name
=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'`
385 head_name
="detached HEAD"
386 branch_name
=HEAD
;# detached
388 branch
=$
(git rev-parse
--verify "${branch_name}^0") ||
exit
393 # Now we are rebasing commits $upstream..$branch on top of $onto
395 # Check if we are already based on $onto with linear history,
396 # but this should be done only when upstream and onto are the same.
397 mb
=$
(git merge-base
"$onto" "$branch")
398 if test "$upstream" = "$onto" && test "$mb" = "$onto" &&
400 ! (git rev-list
--parents "$onto"..
"$branch" |
grep " .* ") > /dev
/null
402 # Lazily switch to the target branch if needed...
403 test -z "$switch_to" || git checkout
"$switch_to"
404 echo >&2 "Current branch $branch_name is up to date."
408 if test -n "$verbose"
410 echo "Changes from $mb to $onto:"
411 # We want color (if set), but no pager
412 GIT_PAGER
='' git
diff --stat --summary "$mb" "$onto"
415 # Detach HEAD and reset the tree
416 echo "First, rewinding head to replay your work on top of it..."
417 git checkout
-q "$onto^0" || die
"could not detach HEAD"
418 git update-ref ORIG_HEAD
$branch
420 # If the $onto is a proper descendant of the tip of the branch, then
421 # we just fast forwarded.
422 if test "$mb" = "$branch"
424 echo >&2 "Fast-forwarded $branch_name to $onto_name."
425 move_to_original_branch
429 if test -z "$do_merge"
431 git format-patch
-k --stdout --full-index --ignore-if-in-upstream \
432 "$upstream..$orig_head" |
433 git am
$git_am_opt --rebasing --resolvemsg="$RESOLVEMSG" &&
434 move_to_original_branch
436 test 0 != $ret -a -d "$GIT_DIR"/rebase-apply
&&
437 echo $head_name > "$GIT_DIR"/rebase-apply
/head-name
&&
438 echo $onto > "$GIT_DIR"/rebase-apply
/onto
&&
439 echo $orig_head > "$GIT_DIR"/rebase-apply
/orig-head
443 # start doing a rebase with git-merge
444 # this is rename-aware if the recursive (default) strategy is used
447 echo "$onto" > "$dotest/onto"
448 echo "$onto_name" > "$dotest/onto_name"
450 echo "$prev_head" > "$dotest/prev_head"
451 echo "$orig_head" > "$dotest/orig-head"
452 echo "$head_name" > "$dotest/head-name"
455 for cmt
in `git rev-list --reverse --no-merges "$upstream..$orig_head"`
457 msgnum
=$
(($msgnum + 1))
458 echo "$cmt" > "$dotest/cmt.$msgnum"
461 echo 1 >"$dotest/msgnum"
462 echo $msgnum >"$dotest/end"
467 while test "$msgnum" -le "$end"