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 orig_head
=$
(cat "$state_dir"/orig-head
) &&
74 GIT_QUIET
=$
(cat "$state_dir"/quiet
)
82 test $status != 0 && printf "%s\n" "$output"
91 move_to_original_branch
() {
94 message
="rebase finished: $head_name onto $onto"
95 git update-ref
-m "$message" \
96 $head_name $
(git rev-parse HEAD
) $orig_head &&
97 git symbolic-ref HEAD
$head_name ||
98 die
"Could not move back to $head_name"
103 run_specific_rebase
() {
104 if [ "$interactive_rebase" = implied
]; then
111 run_pre_rebase_hook
() {
112 if test -z "$ok_to_skip_pre_rebase" &&
113 test -x "$GIT_DIR/hooks/pre-rebase"
115 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
116 die
"The pre-rebase hook refused to rebase."
120 test -f "$apply_dir"/applying
&&
121 die
'It looks like git-am is in progress. Cannot rebase.'
123 if test -d "$apply_dir"
126 state_dir
="$apply_dir"
127 elif test -d "$merge_dir"
129 if test -f "$merge_dir"/interactive
132 interactive_rebase
=explicit
136 state_dir
="$merge_dir"
138 test -n "$type" && in_progress
=t
145 ok_to_skip_pre_rebase
=yes
148 ok_to_skip_pre_rebase
=
150 --continue|
--skip|
--abort)
151 test $total_argc -eq 1 || usage
155 test 2 -le "$#" || usage
160 interactive_rebase
=explicit
162 -p|
--preserve-merges)
164 test -z "$interactive_rebase" && interactive_rebase
=implied
172 -M|
-m|
--m|
--me|
--mer|
--merg|
--merge)
175 -X*|
--strategy-option*)
177 1,-X|
1,--strategy-option)
179 *,-X|
*,--strategy-option)
182 *,--strategy-option=*)
183 newopt
="$(expr " $1" : ' --strategy-option=\(.*\)')" ;;
185 newopt
="$(expr " $1" : ' -X\(.*\)')" ;;
189 strategy_opts
="$strategy_opts $(git rev-parse --sq-quote "--$newopt")"
191 test -z "$strategy" && strategy
=recursive
193 -s=*|
--s=*|
--st=*|
--str=*|
--stra=*|
--strat=*|
--strate=*|\
194 --strateg=*|
--strategy=*|\
195 -s|
--s|
--st|
--str|
--stra|
--strat|
--strate|
--strateg|
--strategy)
198 strategy
=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
220 git_am_opt
="$git_am_opt -q"
225 git_am_opt
="$git_am_opt $1"
227 --whitespace=fix|
--whitespace=strip
)
233 git_am_opt
="$git_am_opt $1"
235 --committer-date-is-author-date|
--ignore-date)
236 git_am_opt
="$git_am_opt $1"
240 git_am_opt
="$git_am_opt $1"
245 -f|
--f|
--fo|
--for|
--forc|
--force|
--force-r|
--force-re|
--force-reb|
--force-reba|
--force-rebas|
--force-rebase|
--no-ff)
248 --rerere-autoupdate|
--no-rerere-autoupdate)
249 allow_rerere_autoupdate
="$1"
260 test $# -gt 2 && usage
264 test -z "$in_progress" && die
"No rebase in progress?"
265 test "$type" = interactive
&& run_specific_rebase
270 git update-index
--ignore-submodules --refresh &&
271 git diff-files
--quiet --ignore-submodules ||
{
272 echo "You must edit all merge conflicts and then"
273 echo "mark them as resolved using git add"
280 output git
reset --hard HEAD ||
exit $?
289 git symbolic-ref HEAD
$head_name ||
290 die
"Could not move back to $head_name"
293 output git
reset --hard $orig_head
299 # Make sure no rebase is in progress
300 if test -n "$in_progress"
303 It seems that there is already a '"${state_dir##*/}"' directory, and
304 I wonder if you are in the middle of another rebase. If that is the
306 git rebase (--continue | --abort | --skip)
307 If that is not the case, please
308 rm -fr '"$state_dir"'
309 and run me again. I am stopping in case you still have something
313 test $# -eq 0 && test -z "$rebase_root" && usage
315 if test -n "$interactive_rebase"
318 state_dir
="$merge_dir"
319 elif test -n "$do_merge"
322 state_dir
="$merge_dir"
325 state_dir
="$apply_dir"
328 if test -z "$rebase_root"
330 # The upstream head must be given. Make sure it is valid.
333 upstream
=`git rev-parse --verify "${upstream_name}^0"` ||
334 die
"invalid upstream $upstream_name"
335 upstream_arg
="$upstream_name"
337 test -z "$onto" && die
"You must specify --onto when using --root"
343 # Make sure the branch to rebase onto is valid.
344 onto_name
=${onto-"$upstream_name"}
347 if left
=${onto_name%...*} right
=${onto_name#*...} &&
348 onto
=$
(git merge-base
--all ${left:-HEAD} ${right:-HEAD})
352 die
"$onto_name: there are more than one merge bases"
355 die
"$onto_name: there is no merge base"
359 die
"$onto_name: there is no merge base"
363 onto
=$
(git rev-parse
--verify "${onto_name}^0") ||
364 die
"Does not point to a valid commit: $1"
368 # If the branch to rebase is given, that is the branch we will rebase
369 # $branch_name -- branch being rebased, or HEAD (already detached)
370 # $orig_head -- commit object name of tip of the branch before rebasing
371 # $head_name -- refs/heads/<that-branch> or "detached HEAD"
375 # Is it "rebase other $branchname" or "rebase other $commit"?
379 if git show-ref
--verify --quiet -- "refs/heads/$1" &&
380 orig_head
=$
(git rev-parse
-q --verify "refs/heads/$1")
382 head_name
="refs/heads/$1"
383 elif orig_head
=$
(git rev-parse
-q --verify "$1")
385 head_name
="detached HEAD"
387 echo >&2 "fatal: no such branch: $1"
392 # Do not need to switch branches, we are already on it.
393 if branch_name
=`git symbolic-ref -q HEAD`
395 head_name
=$branch_name
396 branch_name
=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'`
398 head_name
="detached HEAD"
399 branch_name
=HEAD
;# detached
401 orig_head
=$
(git rev-parse
--verify "${branch_name}^0") ||
exit
405 require_clean_work_tree
"rebase" "Please commit or stash them."
407 # Now we are rebasing commits $upstream..$orig_head (or with --root,
408 # everything leading up to $orig_head) on top of $onto
410 # Check if we are already based on $onto with linear history,
411 # but this should be done only when upstream and onto are the same
412 # and if this is not an interactive rebase.
413 mb
=$
(git merge-base
"$onto" "$orig_head")
414 if test "$type" != interactive
&& test "$upstream" = "$onto" &&
415 test "$mb" = "$onto" &&
417 ! (git rev-list
--parents "$onto"..
"$orig_head" | sane_grep
" .* ") > /dev
/null
419 if test -z "$force_rebase"
421 # Lazily switch to the target branch if needed...
422 test -z "$switch_to" || git checkout
"$switch_to" --
423 say
"Current branch $branch_name is up to date."
426 say
"Current branch $branch_name is up to date, rebase forced."
430 # If a hook exists, give it a chance to interrupt
431 run_pre_rebase_hook
"$upstream_arg" "$@"
433 if test -n "$diffstat"
435 if test -n "$verbose"
437 echo "Changes from $mb to $onto:"
439 # We want color (if set), but no pager
440 GIT_PAGER
='' git
diff --stat --summary "$mb" "$onto"
443 test "$type" = interactive
&& run_specific_rebase
445 # Detach HEAD and reset the tree
446 say
"First, rewinding head to replay your work on top of it..."
447 git checkout
-q "$onto^0" || die
"could not detach HEAD"
448 git update-ref ORIG_HEAD
$orig_head
450 # If the $onto is a proper descendant of the tip of the branch, then
451 # we just fast-forwarded.
452 if test "$mb" = "$orig_head"
454 say
"Fast-forwarded $branch_name to $onto_name."
455 move_to_original_branch
459 if test -n "$rebase_root"
461 revisions
="$onto..$orig_head"
463 revisions
="$upstream..$orig_head"