3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE
='[--interactive | -i] [-v] [--force-rebase | -f] [--no-ff] [--onto <newbase>] [<upstream>|--root] [<branch>] [--quiet | -q]'
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
39 ok_to_skip_pre_rebase
=
41 When you have resolved this problem run \"git rebase --continue\".
42 If you would prefer to skip this patch, instead run \"git rebase --skip\".
43 To restore the original branch and stop rebasing run \"git rebase --abort\".
49 merge_dir
="$GIT_DIR"/rebase-merge
50 apply_dir
="$GIT_DIR"/rebase-apply
53 test "$(git config --bool rebase.stat)" = true
&& diffstat
=t
57 allow_rerere_autoupdate
=
58 # Non-empty if a rebase was in progress when 'git rebase' was invoked
60 # One of {am, merge, interactive}
62 # One of {"$GIT_DIR"/rebase-apply, "$GIT_DIR"/rebase-merge}
64 # One of {'', continue, skip, abort}, as parsed from command line
68 test "$(git config --bool rebase.autosquash)" = "true" && autosquash
=t
71 head_name
=$
(cat "$state_dir"/head-name
) &&
72 onto
=$
(cat "$state_dir"/onto
) &&
73 # We always write to orig-head, but interactive rebase used to write to
74 # head. Fall back to reading from head to cover for the case that the
75 # user upgraded git with an ongoing interactive rebase.
76 if test -f "$state_dir"/orig-head
78 orig_head
=$
(cat "$state_dir"/orig-head
)
80 orig_head
=$
(cat "$state_dir"/head)
82 GIT_QUIET
=$
(cat "$state_dir"/quiet
) &&
83 test -f "$state_dir"/verbose
&& verbose
=t
84 test -f "$state_dir"/strategy
&& strategy
="$(cat "$state_dir"/strategy)"
85 test -f "$state_dir"/strategy_opts
&&
86 strategy_opts
="$(cat "$state_dir"/strategy_opts)"
87 test -f "$state_dir"/allow_rerere_autoupdate
&&
88 allow_rerere_autoupdate
="$(cat "$state_dir"/allow_rerere_autoupdate)"
91 write_basic_state
() {
92 echo "$head_name" > "$state_dir"/head-name
&&
93 echo "$onto" > "$state_dir"/onto
&&
94 echo "$orig_head" > "$state_dir"/orig-head
&&
95 echo "$GIT_QUIET" > "$state_dir"/quiet
&&
96 test t
= "$verbose" && : > "$state_dir"/verbose
97 test -n "$strategy" && echo "$strategy" > "$state_dir"/strategy
98 test -n "$strategy_opts" && echo "$strategy_opts" > \
99 "$state_dir"/strategy_opts
100 test -n "$allow_rerere_autoupdate" && echo "$allow_rerere_autoupdate" > \
101 "$state_dir"/allow_rerere_autoupdate
109 test $status != 0 && printf "%s\n" "$output"
118 move_to_original_branch
() {
121 message
="rebase finished: $head_name onto $onto"
122 git update-ref
-m "$message" \
123 $head_name $
(git rev-parse HEAD
) $orig_head &&
124 git symbolic-ref HEAD
$head_name ||
125 die
"Could not move back to $head_name"
130 run_specific_rebase
() {
131 if [ "$interactive_rebase" = implied
]; then
138 run_pre_rebase_hook
() {
139 if test -z "$ok_to_skip_pre_rebase" &&
140 test -x "$GIT_DIR/hooks/pre-rebase"
142 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
143 die
"The pre-rebase hook refused to rebase."
147 test -f "$apply_dir"/applying
&&
148 die
'It looks like git-am is in progress. Cannot rebase.'
150 if test -d "$apply_dir"
153 state_dir
="$apply_dir"
154 elif test -d "$merge_dir"
156 if test -f "$merge_dir"/interactive
159 interactive_rebase
=explicit
163 state_dir
="$merge_dir"
165 test -n "$type" && in_progress
=t
172 ok_to_skip_pre_rebase
=yes
175 ok_to_skip_pre_rebase
=
177 --continue|
--skip|
--abort)
178 test $total_argc -eq 1 || usage
182 test 2 -le "$#" || usage
187 interactive_rebase
=explicit
189 -p|
--preserve-merges)
191 test -z "$interactive_rebase" && interactive_rebase
=implied
199 -M|
-m|
--m|
--me|
--mer|
--merg|
--merge)
202 -X*|
--strategy-option*)
204 1,-X|
1,--strategy-option)
206 *,-X|
*,--strategy-option)
209 *,--strategy-option=*)
210 newopt
="$(expr " $1" : ' --strategy-option=\(.*\)')" ;;
212 newopt
="$(expr " $1" : ' -X\(.*\)')" ;;
216 strategy_opts
="$strategy_opts $(git rev-parse --sq-quote "--$newopt")"
218 test -z "$strategy" && strategy
=recursive
220 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
221 --strateg=*|
--strategy=*|\
222 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
225 strategy
=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
247 git_am_opt
="$git_am_opt -q"
252 git_am_opt
="$git_am_opt $1"
254 --whitespace=fix|
--whitespace=strip
)
260 git_am_opt
="$git_am_opt $1"
262 --committer-date-is-author-date|
--ignore-date)
263 git_am_opt
="$git_am_opt $1"
267 git_am_opt
="$git_am_opt $1"
272 -f|
--f|
--fo|
--for|
--forc|
--force|
--force-r|
--force-re|
--force-reb|
--force-reba|
--force-rebas|
--force-rebase|
--no-ff)
275 --rerere-autoupdate|
--no-rerere-autoupdate)
276 allow_rerere_autoupdate
="$1"
287 test $# -gt 2 && usage
291 test -z "$in_progress" && die
"No rebase in progress?"
292 # Only interactive rebase uses detailed reflog messages
293 if test "$type" = interactive
&& test "$GIT_REFLOG_ACTION" = rebase
295 GIT_REFLOG_ACTION
="rebase -i ($action)"
296 export GIT_REFLOG_ACTION
303 git rev-parse
--verify HEAD
>/dev
/null ||
304 die
"Cannot read HEAD"
305 git update-index
--ignore-submodules --refresh &&
306 git diff-files
--quiet --ignore-submodules ||
{
307 echo "You must edit all merge conflicts and then"
308 echo "mark them as resolved using git add"
315 output git
reset --hard HEAD ||
exit $?
324 git symbolic-ref HEAD
$head_name ||
325 die
"Could not move back to $head_name"
328 output git
reset --hard $orig_head
334 # Make sure no rebase is in progress
335 if test -n "$in_progress"
338 It seems that there is already a '"${state_dir##*/}"' directory, and
339 I wonder if you are in the middle of another rebase. If that is the
341 git rebase (--continue | --abort | --skip)
342 If that is not the case, please
343 rm -fr '"$state_dir"'
344 and run me again. I am stopping in case you still have something
348 if test -n "$interactive_rebase"
351 state_dir
="$merge_dir"
352 elif test -n "$do_merge"
355 state_dir
="$merge_dir"
358 state_dir
="$apply_dir"
361 if test -z "$rebase_root"
365 if ! upstream_name
=$
(git rev-parse
--symbolic-full-name \
366 --verify -q @
{upstream
} 2>/dev
/null
)
369 error_on_missing_default_upstream
"rebase" "rebase" \
370 "against" "git rebase <upstream branch>"
373 *) upstream_name
="$1"
377 upstream
=`git rev-parse --verify "${upstream_name}^0"` ||
378 die
"invalid upstream $upstream_name"
379 upstream_arg
="$upstream_name"
381 test -z "$onto" && die
"You must specify --onto when using --root"
387 # Make sure the branch to rebase onto is valid.
388 onto_name
=${onto-"$upstream_name"}
391 if left
=${onto_name%...*} right
=${onto_name#*...} &&
392 onto
=$
(git merge-base
--all ${left:-HEAD} ${right:-HEAD})
396 die
"$onto_name: there are more than one merge bases"
399 die
"$onto_name: there is no merge base"
403 die
"$onto_name: there is no merge base"
407 onto
=$
(git rev-parse
--verify "${onto_name}^0") ||
408 die
"Does not point to a valid commit: $1"
412 # If the branch to rebase is given, that is the branch we will rebase
413 # $branch_name -- branch being rebased, or HEAD (already detached)
414 # $orig_head -- commit object name of tip of the branch before rebasing
415 # $head_name -- refs/heads/<that-branch> or "detached HEAD"
419 # Is it "rebase other $branchname" or "rebase other $commit"?
423 if git show-ref
--verify --quiet -- "refs/heads/$1" &&
424 orig_head
=$
(git rev-parse
-q --verify "refs/heads/$1")
426 head_name
="refs/heads/$1"
427 elif orig_head
=$
(git rev-parse
-q --verify "$1")
429 head_name
="detached HEAD"
431 echo >&2 "fatal: no such branch: $1"
436 # Do not need to switch branches, we are already on it.
437 if branch_name
=`git symbolic-ref -q HEAD`
439 head_name
=$branch_name
440 branch_name
=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'`
442 head_name
="detached HEAD"
443 branch_name
=HEAD
;# detached
445 orig_head
=$
(git rev-parse
--verify "${branch_name}^0") ||
exit
449 require_clean_work_tree
"rebase" "Please commit or stash them."
451 # Now we are rebasing commits $upstream..$orig_head (or with --root,
452 # everything leading up to $orig_head) on top of $onto
454 # Check if we are already based on $onto with linear history,
455 # but this should be done only when upstream and onto are the same
456 # and if this is not an interactive rebase.
457 mb
=$
(git merge-base
"$onto" "$orig_head")
458 if test "$type" != interactive
&& test "$upstream" = "$onto" &&
459 test "$mb" = "$onto" &&
461 ! (git rev-list
--parents "$onto"..
"$orig_head" | sane_grep
" .* ") > /dev
/null
463 if test -z "$force_rebase"
465 # Lazily switch to the target branch if needed...
466 test -z "$switch_to" || git checkout
"$switch_to" --
467 say
"Current branch $branch_name is up to date."
470 say
"Current branch $branch_name is up to date, rebase forced."
474 # If a hook exists, give it a chance to interrupt
475 run_pre_rebase_hook
"$upstream_arg" "$@"
477 if test -n "$diffstat"
479 if test -n "$verbose"
481 echo "Changes from $mb to $onto:"
483 # We want color (if set), but no pager
484 GIT_PAGER
='' git
diff --stat --summary "$mb" "$onto"
487 test "$type" = interactive
&& run_specific_rebase
489 # Detach HEAD and reset the tree
490 say
"First, rewinding head to replay your work on top of it..."
491 git checkout
-q "$onto^0" || die
"could not detach HEAD"
492 git update-ref ORIG_HEAD
$orig_head
494 # If the $onto is a proper descendant of the tip of the branch, then
495 # we just fast-forwarded.
496 if test "$mb" = "$orig_head"
498 say
"Fast-forwarded $branch_name to $onto_name."
499 move_to_original_branch
503 if test -n "$rebase_root"
505 revisions
="$onto..$orig_head"
507 revisions
="$upstream..$orig_head"