3 # Copyright (c) 2005 Junio C Hamano.
10 git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] [<upstream>] [<branch>]
11 git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] --root [<branch>]
12 git rebase --continue | --abort | --skip | --edit-todo
15 v,verbose! display a diffstat of what changed upstream
16 q,quiet! be quiet. implies --no-stat
17 autostash automatically stash/stash pop before and after
18 fork-point use 'merge-base --fork-point' to refine upstream
19 onto=! rebase onto given branch instead of upstream
20 p,preserve-merges! try to recreate merges instead of ignoring them
21 s,strategy=! use the given merge strategy
22 no-ff! cherry-pick all commits, even if unchanged
23 m,merge! use merging strategies to rebase
24 i,interactive! let the user edit the list of commits to rebase
25 x,exec=! add exec lines after each commit of the editable list
26 k,keep-empty preserve empty commits during rebase
27 allow-empty-message allow rebasing commits with empty messages
28 f,force-rebase! force rebase even if branch is up to date
29 X,strategy-option=! pass the argument through to the merge strategy
30 stat! display a diffstat of what changed upstream
31 n,no-stat! do not show diffstat of what changed upstream
32 verify allow pre-rebase hook to run
33 rerere-autoupdate allow rerere to update index with resolved conflicts
34 root! rebase all reachable commits up to the root(s)
35 autosquash move commits that begin with squash!/fixup! under -i
36 committer-date-is-author-date! passed to 'git am'
37 ignore-date! passed to 'git am'
38 signoff passed to 'git am'
39 whitespace=! passed to 'git apply'
40 ignore-whitespace! passed to 'git apply'
41 C=! passed to 'git apply'
42 S,gpg-sign? GPG-sign commits
45 abort! abort and check out the original branch
46 skip! skip current patch and continue
47 edit-todo! edit the todo list during an interactive rebase
48 quit! abort but keep HEAD where it is
51 set_reflog_action rebase
52 require_work_tree_exists
57 ok_to_skip_pre_rebase
=
59 $(gettext 'Resolve all conflicts manually, mark them as resolved with
60 "git add
/rm <conflicted_files
>", then run "git rebase
--continue".
61 You can instead skip this commit: run "git rebase
--skip".
62 To abort and get back to the state before "git rebase
", run "git rebase
--abort".')
65 unset restrict_revision
70 merge_dir
="$GIT_DIR"/rebase-merge
71 apply_dir
="$GIT_DIR"/rebase-apply
74 test "$(git config --bool rebase.stat)" = true
&& diffstat
=t
75 autostash
="$(git config --bool rebase.autostash || echo false)"
81 allow_rerere_autoupdate
=
82 # Non-empty if a rebase was in progress when 'git rebase' was invoked
84 # One of {am, merge, interactive}
86 # One of {"$GIT_DIR"/rebase-apply, "$GIT_DIR"/rebase-merge}
88 # One of {'', continue, skip, abort}, as parsed from command line
94 test "$(git config --bool rebase.autosquash)" = "true" && autosquash
=t
95 case "$(git config --bool commit.gpgsign)" in
96 true
) gpg_sign_opt
=-S ;;
100 read_basic_state
() {
101 test -f "$state_dir/head-name" &&
102 test -f "$state_dir/onto" &&
103 head_name
=$
(cat "$state_dir"/head-name
) &&
104 onto
=$
(cat "$state_dir"/onto
) &&
105 # We always write to orig-head, but interactive rebase used to write to
106 # head. Fall back to reading from head to cover for the case that the
107 # user upgraded git with an ongoing interactive rebase.
108 if test -f "$state_dir"/orig-head
110 orig_head
=$
(cat "$state_dir"/orig-head
)
112 orig_head
=$
(cat "$state_dir"/head)
114 GIT_QUIET
=$
(cat "$state_dir"/quiet
) &&
115 test -f "$state_dir"/verbose
&& verbose
=t
116 test -f "$state_dir"/strategy
&& strategy
="$(cat "$state_dir"/strategy)"
117 test -f "$state_dir"/strategy_opts
&&
118 strategy_opts
="$(cat "$state_dir"/strategy_opts)"
119 test -f "$state_dir"/allow_rerere_autoupdate
&&
120 allow_rerere_autoupdate
="$(cat "$state_dir"/allow_rerere_autoupdate)"
121 test -f "$state_dir"/gpg_sign_opt
&&
122 gpg_sign_opt
="$(cat "$state_dir"/gpg_sign_opt)"
125 write_basic_state
() {
126 echo "$head_name" > "$state_dir"/head-name
&&
127 echo "$onto" > "$state_dir"/onto
&&
128 echo "$orig_head" > "$state_dir"/orig-head
&&
129 echo "$GIT_QUIET" > "$state_dir"/quiet
&&
130 test t
= "$verbose" && : > "$state_dir"/verbose
131 test -n "$strategy" && echo "$strategy" > "$state_dir"/strategy
132 test -n "$strategy_opts" && echo "$strategy_opts" > \
133 "$state_dir"/strategy_opts
134 test -n "$allow_rerere_autoupdate" && echo "$allow_rerere_autoupdate" > \
135 "$state_dir"/allow_rerere_autoupdate
136 test -n "$gpg_sign_opt" && echo "$gpg_sign_opt" > "$state_dir"/gpg_sign_opt
144 test $status != 0 && printf "%s\n" "$output"
153 move_to_original_branch
() {
156 message
="rebase finished: $head_name onto $onto"
157 git update-ref
-m "$message" \
158 $head_name $
(git rev-parse HEAD
) $orig_head &&
160 -m "rebase finished: returning to $head_name" \
162 die
"$(eval_gettext "Could not move back to \
$head_name")"
168 if test -f "$state_dir/autostash"
170 stash_sha1
=$
(cat "$state_dir/autostash")
171 if git stash apply
$stash_sha1 >/dev
/null
2>&1
173 echo "$(gettext 'Applied autostash.')" >&2
175 git stash store
-m "autostash" -q $stash_sha1 ||
176 die
"$(eval_gettext "Cannot store \
$stash_sha1")"
177 gettext 'Applying autostash resulted in conflicts.
178 Your changes are safe in the stash.
179 You can run "git stash pop" or "git stash drop" at any time.
187 { git gc
--auto || true
; } &&
191 run_specific_rebase
() {
192 if [ "$interactive_rebase" = implied
]; then
202 elif test $ret -eq 2 # special exit status for rebase -i
205 rm -rf "$state_dir" &&
211 run_pre_rebase_hook
() {
212 if test -z "$ok_to_skip_pre_rebase" &&
213 test -x "$(git rev-parse --git-path hooks/pre-rebase)"
215 "$(git rev-parse --git-path hooks/pre-rebase)" ${1+"$@"} ||
216 die
"$(gettext "The pre-rebase hook refused to rebase.
")"
220 test -f "$apply_dir"/applying
&&
221 die
"$(gettext "It looks like
'git am' is
in progress. Cannot rebase.
")"
223 if test -d "$apply_dir"
226 state_dir
="$apply_dir"
227 elif test -d "$merge_dir"
229 if test -f "$merge_dir"/interactive
232 interactive_rebase
=explicit
236 state_dir
="$merge_dir"
238 test -n "$type" && in_progress
=t
245 ok_to_skip_pre_rebase
=yes
248 ok_to_skip_pre_rebase
=
250 --continue|
--skip|
--abort|
--quit|
--edit-todo)
251 test $total_argc -eq 2 || usage
258 cmd
="${cmd}exec ${1#--exec=}${LF}"
259 test -z "$interactive_rebase" && interactive_rebase
=implied
262 interactive_rebase
=explicit
267 --allow-empty-message)
268 allow_empty_message
=--allow-empty-message
272 test -z "$interactive_rebase" && interactive_rebase
=implied
290 strategy_opts
="$strategy_opts $(git rev-parse --sq-quote "--${1#--strategy-option=}")"
292 test -z "$strategy" && strategy
=recursive
295 strategy
="${1#--strategy=}"
317 git_am_opt
="$git_am_opt -q"
322 git_am_opt
="$git_am_opt --whitespace=${1#--whitespace=}"
323 case "${1#--whitespace=}" in
330 git_am_opt
="$git_am_opt $1"
332 --committer-date-is-author-date|
--ignore-date|
--signoff|
--no-signoff)
333 git_am_opt
="$git_am_opt $1"
337 git_am_opt
="$git_am_opt $1"
342 --force-rebase|
--no-ff)
345 --rerere-autoupdate|
--no-rerere-autoupdate)
346 allow_rerere_autoupdate
="$1"
352 gpg_sign_opt
="-S${1#--gpg-sign=}"
364 test $# -gt 2 && usage
368 test -z "$in_progress" && die
"$(gettext "No rebase
in progress?
")"
369 # Only interactive rebase uses detailed reflog messages
370 if test "$type" = interactive
&& test "$GIT_REFLOG_ACTION" = rebase
372 GIT_REFLOG_ACTION
="rebase -i ($action)"
373 export GIT_REFLOG_ACTION
377 if test "$action" = "edit-todo" && test "$type" != "interactive"
379 die
"$(gettext "The
--edit-todo action can only be used during interactive rebase.
")"
385 git rev-parse
--verify HEAD
>/dev
/null ||
386 die
"$(gettext "Cannot
read HEAD
")"
387 git update-index
--ignore-submodules --refresh &&
388 git diff-files
--quiet --ignore-submodules ||
{
389 echo "$(gettext "You must edit all merge conflicts and
then
390 mark them as resolved using git add
")"
397 output git
reset --hard HEAD ||
exit $?
406 git symbolic-ref
-m "rebase: aborting" HEAD
$head_name ||
407 die
"$(eval_gettext "Could not move back to \
$head_name")"
410 output git
reset --hard $orig_head
415 exec rm -rf "$state_dir"
422 # Make sure no rebase is in progress
423 if test -n "$in_progress"
425 state_dir_base
=${state_dir##*/}
426 cmd_live_rebase
="git rebase (--continue | --abort | --skip)"
427 cmd_clear_stale_rebase
="rm -fr \"$state_dir\""
429 $(eval_gettext 'It seems that there is already a $state_dir_base directory, and
430 I wonder if you are in the middle of another rebase. If that is the
433 If that is not the case, please
434 $cmd_clear_stale_rebase
435 and run me again. I am stopping in case you still have something
439 if test -n "$rebase_root" && test -z "$onto"
441 test -z "$interactive_rebase" && interactive_rebase
=implied
444 if test -n "$interactive_rebase"
447 state_dir
="$merge_dir"
448 elif test -n "$do_merge"
451 state_dir
="$merge_dir"
454 state_dir
="$apply_dir"
457 if test -t 2 && test -z "$GIT_QUIET"
459 git_format_patch_opt
="$git_format_patch_opt --progress"
462 if test -z "$rebase_root"
466 if ! upstream_name
=$
(git rev-parse
--symbolic-full-name \
467 --verify -q @
{upstream
} 2>/dev
/null
)
470 error_on_missing_default_upstream
"rebase" "rebase" \
471 "against" "git rebase $(gettext '<branch>')"
474 test "$fork_point" = auto
&& fork_point
=t
476 *) upstream_name
="$1"
477 if test "$upstream_name" = "-"
479 upstream_name
="@{-1}"
484 upstream
=$
(peel_committish
"${upstream_name}") ||
485 die
"$(eval_gettext "invalid upstream
'\$upstream_name'")"
486 upstream_arg
="$upstream_name"
490 empty_tree
=$
(git hash-object
-t tree
/dev
/null
)
491 onto
=$
(git commit-tree
$empty_tree </dev
/null
)
496 test $# -gt 1 && usage
500 # Make sure the branch to rebase onto is valid.
501 onto_name
=${onto-"$upstream_name"}
504 if left
=${onto_name%...*} right
=${onto_name#*...} &&
505 onto
=$
(git merge-base
--all ${left:-HEAD} ${right:-HEAD})
509 die
"$(eval_gettext "\
$onto_name: there are
more than one merge bases
")"
512 die
"$(eval_gettext "\
$onto_name: there is no merge base
")"
516 die
"$(eval_gettext "\
$onto_name: there is no merge base
")"
520 onto
=$
(peel_committish
"$onto_name") ||
521 die
"$(eval_gettext "Does not point to a valid commit
: \
$onto_name")"
525 # If the branch to rebase is given, that is the branch we will rebase
526 # $branch_name -- branch/commit being rebased, or HEAD (already detached)
527 # $orig_head -- commit object name of tip of the branch before rebasing
528 # $head_name -- refs/heads/<that-branch> or "detached HEAD"
532 # Is it "rebase other $branchname" or "rebase other $commit"?
536 # Is it a local branch?
537 if git show-ref
--verify --quiet -- "refs/heads/$branch_name" &&
538 orig_head
=$
(git rev-parse
-q --verify "refs/heads/$branch_name")
540 head_name
="refs/heads/$branch_name"
541 # If not is it a valid ref (branch or commit)?
542 elif orig_head
=$
(git rev-parse
-q --verify "$branch_name")
544 head_name
="detached HEAD"
547 die
"$(eval_gettext "fatal
: no such branch
/commit
'\$branch_name'")"
551 # Do not need to switch branches, we are already on it.
552 if branch_name
=$
(git symbolic-ref
-q HEAD
)
554 head_name
=$branch_name
555 branch_name
=$
(expr "z$branch_name" : 'zrefs/heads/\(.*\)')
557 head_name
="detached HEAD"
560 orig_head
=$
(git rev-parse
--verify HEAD
) ||
exit
563 die
"BUG: unexpected number of arguments left to parse"
567 if test "$fork_point" = t
569 new_upstream
=$
(git merge-base
--fork-point "$upstream_name" \
570 "${switch_to:-HEAD}")
571 if test -n "$new_upstream"
573 restrict_revision
=$new_upstream
577 if test "$autostash" = true
&& ! (require_clean_work_tree
) 2>/dev
/null
579 stash_sha1
=$
(git stash create
"autostash") ||
580 die
"$(gettext 'Cannot autostash')"
582 mkdir
-p "$state_dir" &&
583 echo $stash_sha1 >"$state_dir/autostash" &&
584 stash_abbrev
=$
(git rev-parse
--short $stash_sha1) &&
585 echo "$(eval_gettext 'Created autostash: $stash_abbrev')" &&
589 require_clean_work_tree
"rebase" "$(gettext "Please commit or stash them.
")"
591 # Now we are rebasing commits $upstream..$orig_head (or with --root,
592 # everything leading up to $orig_head) on top of $onto
594 # Check if we are already based on $onto with linear history,
595 # but this should be done only when upstream and onto are the same
596 # and if this is not an interactive rebase.
597 mb
=$
(git merge-base
"$onto" "$orig_head")
598 if test "$type" != interactive
&& test "$upstream" = "$onto" &&
599 test "$mb" = "$onto" && test -z "$restrict_revision" &&
601 ! (git rev-list
--parents "$onto"..
"$orig_head" | sane_grep
" .* ") > /dev
/null
603 if test -z "$force_rebase"
605 # Lazily switch to the target branch if needed...
606 test -z "$switch_to" ||
607 GIT_REFLOG_ACTION
="$GIT_REFLOG_ACTION: checkout $switch_to" \
608 git checkout
-q "$switch_to" --
609 if test "$branch_name" = "HEAD" &&
610 ! git symbolic-ref
-q HEAD
612 say
"$(eval_gettext "HEAD is up to
date.
")"
614 say
"$(eval_gettext "Current branch \
$branch_name is up to
date.
")"
619 if test "$branch_name" = "HEAD" &&
620 ! git symbolic-ref
-q HEAD
622 say
"$(eval_gettext "HEAD is up to
date, rebase forced.
")"
624 say
"$(eval_gettext "Current branch \
$branch_name is up to
date, rebase forced.
")"
629 # If a hook exists, give it a chance to interrupt
630 run_pre_rebase_hook
"$upstream_arg" "$@"
632 if test -n "$diffstat"
634 if test -n "$verbose"
636 echo "$(eval_gettext "Changes from \
$mb to \
$onto:")"
638 # We want color (if set), but no pager
639 GIT_PAGER
='' git
diff --stat --summary "$mb" "$onto"
642 test "$type" = interactive
&& run_specific_rebase
644 # Detach HEAD and reset the tree
645 say
"$(gettext "First
, rewinding
head to replay your work on top of it...
")"
647 GIT_REFLOG_ACTION
="$GIT_REFLOG_ACTION: checkout $onto_name" \
648 git checkout
-q "$onto^0" || die
"could not detach HEAD"
649 git update-ref ORIG_HEAD
$orig_head
651 # If the $onto is a proper descendant of the tip of the branch, then
652 # we just fast-forwarded.
653 if test "$mb" = "$orig_head"
655 say
"$(eval_gettext "Fast-forwarded \
$branch_name to \
$onto_name.
")"
656 move_to_original_branch
661 if test -n "$rebase_root"
663 revisions
="$onto..$orig_head"
665 revisions
="${restrict_revision-$upstream}..$orig_head"