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 r,rebase-merges? try to rebase merges instead of skipping them
21 p,preserve-merges! try to recreate merges instead of ignoring them
22 s,strategy=! use the given merge strategy
23 X,strategy-option=! pass the argument through to the merge strategy
24 no-ff! cherry-pick all commits, even if unchanged
25 f,force-rebase! cherry-pick all commits, even if unchanged
26 m,merge! use merging strategies to rebase
27 i,interactive! let the user edit the list of commits to rebase
28 x,exec=! add exec lines after each commit of the editable list
29 y=! same as --reschedule-failed-exec -x
30 k,keep-empty preserve empty commits during rebase
31 allow-empty-message allow rebasing commits with empty messages
32 stat! display a diffstat of what changed upstream
33 n,no-stat! do not show diffstat of what changed upstream
34 verify allow pre-rebase hook to run
35 rerere-autoupdate allow rerere to update index with resolved conflicts
36 root! rebase all reachable commits up to the root(s)
37 autosquash move commits that begin with squash!/fixup! under -i
38 signoff add a Signed-off-by: line to each commit
39 committer-date-is-author-date! passed to 'git am'
40 ignore-date! passed to 'git am'
41 whitespace=! passed to 'git apply'
42 ignore-whitespace! passed to 'git apply'
43 C=! passed to 'git apply'
44 S,gpg-sign? GPG-sign commits
47 abort! abort and check out the original branch
48 skip! skip current patch and continue
49 edit-todo! edit the todo list during an interactive rebase
50 quit! abort but keep HEAD where it is
51 show-current-patch! show the patch file being applied or merged
52 reschedule-failed-exec automatically reschedule failed exec commands
55 set_reflog_action rebase
56 require_work_tree_exists
61 ok_to_skip_pre_rebase
=
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
95 allow_empty_message
=--allow-empty-message
97 reschedule_failed_exec
=
98 test "$(git config --bool rebase.autosquash)" = "true" && autosquash
=t
99 case "$(git config --bool commit.gpgsign)" in
100 true
) gpg_sign_opt
=-S ;;
103 test "$(git config --bool rebase.reschedulefailedexec)" = "true" &&
104 reschedule_failed_exec
=--reschedule-failed-exec
107 read_basic_state
() {
108 test -f "$state_dir/head-name" &&
109 test -f "$state_dir/onto" &&
110 head_name
=$
(cat "$state_dir"/head-name
) &&
111 onto
=$
(cat "$state_dir"/onto
) &&
112 # We always write to orig-head, but interactive rebase used to write to
113 # head. Fall back to reading from head to cover for the case that the
114 # user upgraded git with an ongoing interactive rebase.
115 if test -f "$state_dir"/orig-head
117 orig_head
=$
(cat "$state_dir"/orig-head
)
119 orig_head
=$
(cat "$state_dir"/head)
121 GIT_QUIET
=$
(cat "$state_dir"/quiet
) &&
122 test -f "$state_dir"/verbose
&& verbose
=t
123 test -f "$state_dir"/strategy
&& strategy
="$(cat "$state_dir"/strategy)"
124 test -f "$state_dir"/strategy_opts
&&
125 strategy_opts
="$(cat "$state_dir"/strategy_opts)"
126 test -f "$state_dir"/allow_rerere_autoupdate
&&
127 allow_rerere_autoupdate
="$(cat "$state_dir"/allow_rerere_autoupdate)"
128 test -f "$state_dir"/gpg_sign_opt
&&
129 gpg_sign_opt
="$(cat "$state_dir"/gpg_sign_opt)"
130 test -f "$state_dir"/signoff
&& {
131 signoff
="$(cat "$state_dir"/signoff)"
134 test -f "$state_dir"/reschedule-failed-exec
&&
135 reschedule_failed_exec
=t
139 rm -f "$(git rev-parse --git-path REBASE_HEAD)"
141 { git gc
--auto || true
; } &&
146 GIT_CHERRY_PICK_HELP
="$resolvemsg"
147 export GIT_CHERRY_PICK_HELP
149 test -n "$keep_empty" && keep_empty
="--keep-empty"
150 test -n "$rebase_merges" && rebase_merges
="--rebase-merges"
151 test -n "$rebase_cousins" && rebase_cousins
="--rebase-cousins"
152 test -n "$autosquash" && autosquash
="--autosquash"
153 test -n "$verbose" && verbose
="--verbose"
154 test -n "$force_rebase" && force_rebase
="--no-ff"
155 test -n "$restrict_revision" && \
156 restrict_revision
="--restrict-revision=^$restrict_revision"
157 test -n "$upstream" && upstream
="--upstream=$upstream"
158 test -n "$onto" && onto
="--onto=$onto"
159 test -n "$squash_onto" && squash_onto
="--squash-onto=$squash_onto"
160 test -n "$onto_name" && onto_name
="--onto-name=$onto_name"
161 test -n "$head_name" && head_name
="--head-name=$head_name"
162 test -n "$strategy" && strategy
="--strategy=$strategy"
163 test -n "$strategy_opts" && strategy_opts
="--strategy-opts=$strategy_opts"
164 test -n "$switch_to" && switch_to
="--switch-to=$switch_to"
165 test -n "$cmd" && cmd
="--cmd=$cmd"
166 test -n "$action" && action
="--$action"
168 exec git rebase--interactive
"$action" "$keep_empty" "$rebase_merges" "$rebase_cousins" \
169 "$upstream" "$onto" "$squash_onto" "$restrict_revision" \
170 "$allow_empty_message" "$autosquash" "$verbose" \
171 "$force_rebase" "$onto_name" "$head_name" "$strategy" \
172 "$strategy_opts" "$cmd" "$switch_to" \
173 "$allow_rerere_autoupdate" "$gpg_sign_opt" "$signoff" \
174 "$reschedule_failed_exec"
177 run_specific_rebase
() {
178 if [ "$interactive_rebase" = implied
]; then
184 if test -n "$interactive_rebase" -a -z "$preserve_merges"
190 if test -z "$preserve_merges"
194 git_rebase__preserve_merges
202 elif test $ret -eq 2 # special exit status for rebase -p
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 -d "$merge_dir"/rewritten
232 interactive_rebase
=explicit
234 elif test -f "$merge_dir"/interactive
237 interactive_rebase
=explicit
241 state_dir
="$merge_dir"
243 test -n "$type" && in_progress
=t
250 ok_to_skip_pre_rebase
=yes
253 ok_to_skip_pre_rebase
=
255 --continue|
--skip|
--abort|
--quit|
--edit-todo|
--show-current-patch)
256 test $total_argc -eq 2 || usage
263 cmd
="${cmd}exec ${1#--exec=}${LF}"
264 test -z "$interactive_rebase" && interactive_rebase
=implied
267 reschedule_failed_exec
=--reschedule-failed-exec
268 cmd
="${cmd}exec ${1#-y}${LF}"
269 test -z "$interactive_rebase" && interactive_rebase
=implied
272 interactive_rebase
=explicit
277 --allow-empty-message)
278 allow_empty_message
=--allow-empty-message
285 test -z "$interactive_rebase" && interactive_rebase
=implied
290 rebase-cousins
) rebase_cousins
=t
;;
291 no-rebase-cousins
) rebase_cousins
=;;
292 *) die
"Unknown mode: $1";;
294 test -z "$interactive_rebase" && interactive_rebase
=implied
298 test -z "$interactive_rebase" && interactive_rebase
=implied
316 strategy_opts
="$strategy_opts $(git rev-parse --sq-quote "--${1#--strategy-option=}" | sed -e s/^.//)"
318 test -z "$strategy" && strategy
=recursive
321 strategy
="${1#--strategy=}"
343 git_am_opt
="$git_am_opt -q"
348 git_am_opt
="$git_am_opt --whitespace=${1#--whitespace=}"
349 case "${1#--whitespace=}" in
353 warn|nowarn|error|error-all
)
354 ;; # okay, known whitespace option
356 die
"fatal: Invalid whitespace option: '${1#*=}'"
361 git_am_opt
="$git_am_opt $1"
369 --committer-date-is-author-date|
--ignore-date)
370 git_am_opt
="$git_am_opt $1"
374 die
"fatal: switch \`C' expects a numerical value"
377 git_am_opt
="$git_am_opt $1"
382 --force-rebase|
--no-ff)
385 --rerere-autoupdate|
--no-rerere-autoupdate)
386 allow_rerere_autoupdate
="$1"
392 gpg_sign_opt
="-S${1#--gpg-sign=}"
394 --reschedule-failed-exec)
395 reschedule_failed_exec
=--reschedule-failed-exec
397 --no-reschedule-failed-exec)
398 reschedule_failed_exec
=
410 test $# -gt 2 && usage
414 test -z "$in_progress" && die
"$(gettext "No rebase
in progress?
")"
415 # Only interactive rebase uses detailed reflog messages
416 if test -n "$interactive_rebase" && test "$GIT_REFLOG_ACTION" = rebase
418 GIT_REFLOG_ACTION
="rebase -i ($action)"
419 export GIT_REFLOG_ACTION
423 if test "$action" = "edit-todo" && test -z "$interactive_rebase"
425 die
"$(gettext "The
--edit-todo action can only be used during interactive rebase.
")"
431 git rev-parse
--verify HEAD
>/dev
/null ||
432 die
"$(gettext "Cannot
read HEAD
")"
433 git update-index
--ignore-submodules --refresh &&
434 git diff-files
--quiet --ignore-submodules ||
{
435 echo "$(gettext "You must edit all merge conflicts and
then
436 mark them as resolved using git add
")"
443 output git
reset --hard HEAD ||
exit $?
452 git symbolic-ref
-m "rebase: aborting" HEAD
$head_name ||
453 die
"$(eval_gettext "Could not move back to \
$head_name")"
456 output git
reset --hard $orig_head
461 exec rm -rf "$state_dir"
468 die
"BUG: run_specific_rebase is not supposed to return here"
472 # Make sure no rebase is in progress
473 if test -n "$in_progress"
475 state_dir_base
=${state_dir##*/}
476 cmd_live_rebase
="git rebase (--continue | --abort | --skip)"
477 cmd_clear_stale_rebase
="rm -fr \"$state_dir\""
479 $(eval_gettext 'It seems that there is already a $state_dir_base directory, and
480 I wonder if you are in the middle of another rebase. If that is the
483 If that is not the case, please
484 $cmd_clear_stale_rebase
485 and run me again. I am stopping in case you still have something
489 if test -n "$rebase_root" && test -z "$onto"
491 test -z "$interactive_rebase" && interactive_rebase
=implied
494 if test -n "$keep_empty"
496 test -z "$interactive_rebase" && interactive_rebase
=implied
499 if test -n "$interactive_rebase"
501 if test -z "$preserve_merges"
508 state_dir
="$merge_dir"
509 elif test -n "$do_merge"
512 state_dir
="$merge_dir"
515 state_dir
="$apply_dir"
518 if test -t 2 && test -z "$GIT_QUIET"
520 git_format_patch_opt
="$git_format_patch_opt --progress"
523 if test -n "$git_am_opt"; then
524 incompatible_opts
=$
(echo " $git_am_opt " | \
525 sed -e 's/ -q / /g' -e 's/^ \(.*\) $/\1/')
526 if test -n "$interactive_rebase"
528 if test -n "$incompatible_opts"
530 die
"$(gettext "error
: cannot combine interactive options
(--interactive, --exec, --rebase-merges, --preserve-merges, --keep-empty, --root + --onto) with am options
($incompatible_opts)")"
533 if test -n "$do_merge"; then
534 if test -n "$incompatible_opts"
536 die
"$(gettext "error
: cannot combine merge options
(--merge, --strategy, --strategy-option) with am options
($incompatible_opts)")"
541 if test -n "$signoff"
543 test -n "$preserve_merges" &&
544 die
"$(gettext "error
: cannot combine
'--signoff' with
'--preserve-merges'")"
545 git_am_opt
="$git_am_opt $signoff"
549 if test -n "$preserve_merges"
551 # Note: incompatibility with --signoff handled in signoff block above
552 # Note: incompatibility with --interactive is just a strong warning;
553 # git-rebase.txt caveats with "unless you know what you are doing"
554 test -n "$rebase_merges" &&
555 die
"$(gettext "error
: cannot combine
'--preserve-merges' with
'--rebase-merges'")"
557 test -n "$reschedule_failed_exec" &&
558 die
"$(gettext "error
: cannot combine
'--preserve-merges' with
'--reschedule-failed-exec'")"
561 if test -n "$rebase_merges"
563 test -n "$strategy_opts" &&
564 die
"$(gettext "error
: cannot combine
'--rebase-merges' with
'--strategy-option'")"
565 test -n "$strategy" &&
566 die
"$(gettext "error
: cannot combine
'--rebase-merges' with
'--strategy'")"
569 if test -z "$rebase_root"
573 if ! upstream_name
=$
(git rev-parse
--symbolic-full-name \
574 --verify -q @
{upstream
} 2>/dev
/null
)
577 error_on_missing_default_upstream
"rebase" "rebase" \
578 "against" "git rebase $(gettext '<branch>')"
581 test "$fork_point" = auto
&& fork_point
=t
583 *) upstream_name
="$1"
584 if test "$upstream_name" = "-"
586 upstream_name
="@{-1}"
591 upstream
=$
(peel_committish
"${upstream_name}") ||
592 die
"$(eval_gettext "invalid upstream
'\$upstream_name'")"
593 upstream_arg
="$upstream_name"
597 empty_tree
=$
(git hash-object
-t tree
/dev
/null
)
598 onto
=$
(git commit-tree
$empty_tree </dev
/null
)
603 test $# -gt 1 && usage
607 # Make sure the branch to rebase onto is valid.
608 onto_name
=${onto-"$upstream_name"}
611 if left
=${onto_name%...*} right
=${onto_name#*...} &&
612 onto
=$
(git merge-base
--all ${left:-HEAD} ${right:-HEAD})
616 die
"$(eval_gettext "\
$onto_name: there are
more than one merge bases
")"
619 die
"$(eval_gettext "\
$onto_name: there is no merge base
")"
623 die
"$(eval_gettext "\
$onto_name: there is no merge base
")"
627 onto
=$
(peel_committish
"$onto_name") ||
628 die
"$(eval_gettext "Does not point to a valid commit
: \
$onto_name")"
632 # If the branch to rebase is given, that is the branch we will rebase
633 # $branch_name -- branch/commit being rebased, or HEAD (already detached)
634 # $orig_head -- commit object name of tip of the branch before rebasing
635 # $head_name -- refs/heads/<that-branch> or "detached HEAD"
639 # Is it "rebase other $branchname" or "rebase other $commit"?
643 # Is it a local branch?
644 if git show-ref
--verify --quiet -- "refs/heads/$branch_name" &&
645 orig_head
=$
(git rev-parse
-q --verify "refs/heads/$branch_name")
647 head_name
="refs/heads/$branch_name"
648 # If not is it a valid ref (branch or commit)?
649 elif orig_head
=$
(git rev-parse
-q --verify "$branch_name")
651 head_name
="detached HEAD"
654 die
"$(eval_gettext "fatal
: no such branch
/commit
'\$branch_name'")"
658 # Do not need to switch branches, we are already on it.
659 if branch_name
=$
(git symbolic-ref
-q HEAD
)
661 head_name
=$branch_name
662 branch_name
=$
(expr "z$branch_name" : 'zrefs/heads/\(.*\)')
664 head_name
="detached HEAD"
667 orig_head
=$
(git rev-parse
--verify HEAD
) ||
exit
670 die
"BUG: unexpected number of arguments left to parse"
674 if test "$fork_point" = t
676 new_upstream
=$
(git merge-base
--fork-point "$upstream_name" \
677 "${switch_to:-HEAD}")
678 if test -n "$new_upstream"
680 restrict_revision
=$new_upstream
684 if test "$autostash" = true
&& ! (require_clean_work_tree
) 2>/dev
/null
686 stash_sha1
=$
(git stash create
"autostash") ||
687 die
"$(gettext 'Cannot autostash')"
689 mkdir
-p "$state_dir" &&
690 echo $stash_sha1 >"$state_dir/autostash" &&
691 stash_abbrev
=$
(git rev-parse
--short $stash_sha1) &&
692 echo "$(eval_gettext 'Created autostash: $stash_abbrev')" &&
696 require_clean_work_tree
"rebase" "$(gettext "Please commit or stash them.
")"
698 # Now we are rebasing commits $upstream..$orig_head (or with --root,
699 # everything leading up to $orig_head) on top of $onto
701 # Check if we are already based on $onto with linear history,
702 # but this should be done only when upstream and onto are the same
703 # and if this is not an interactive rebase.
704 mb
=$
(git merge-base
"$onto" "$orig_head")
705 if test -z "$interactive_rebase" && test "$upstream" = "$onto" &&
706 test "$mb" = "$onto" && test -z "$restrict_revision" &&
708 ! (git rev-list
--parents "$onto"..
"$orig_head" | sane_grep
" .* ") > /dev
/null
710 if test -z "$force_rebase"
712 # Lazily switch to the target branch if needed...
713 test -z "$switch_to" ||
714 GIT_REFLOG_ACTION
="$GIT_REFLOG_ACTION: checkout $switch_to" \
715 git checkout
-q "$switch_to" --
716 if test "$branch_name" = "HEAD" &&
717 ! git symbolic-ref
-q HEAD
719 say
"$(eval_gettext "HEAD is up to
date.
")"
721 say
"$(eval_gettext "Current branch \
$branch_name is up to
date.
")"
726 if test "$branch_name" = "HEAD" &&
727 ! git symbolic-ref
-q HEAD
729 say
"$(eval_gettext "HEAD is up to
date, rebase forced.
")"
731 say
"$(eval_gettext "Current branch \
$branch_name is up to
date, rebase forced.
")"
736 # If a hook exists, give it a chance to interrupt
737 run_pre_rebase_hook
"$upstream_arg" "$@"
739 if test -n "$diffstat"
741 if test -n "$verbose"
745 echo "$(eval_gettext "Changes to \
$onto:")"
747 echo "$(eval_gettext "Changes from \
$mb to \
$onto:")"
750 mb_tree
="${mb:-$(git hash-object -t tree /dev/null)}"
751 # We want color (if set), but no pager
752 GIT_PAGER
='' git
diff --stat --summary "$mb_tree" "$onto"
755 test -n "$interactive_rebase" && run_specific_rebase
757 # Detach HEAD and reset the tree
758 say
"$(gettext "First
, rewinding
head to replay your work on top of it...
")"
760 GIT_REFLOG_ACTION
="$GIT_REFLOG_ACTION: checkout $onto_name" \
761 git checkout
-q "$onto^0" || die
"could not detach HEAD"
762 git update-ref ORIG_HEAD
$orig_head
764 # If the $onto is a proper descendant of the tip of the branch, then
765 # we just fast-forwarded.
766 if test "$mb" = "$orig_head"
768 say
"$(eval_gettext "Fast-forwarded \
$branch_name to \
$onto_name.
")"
769 move_to_original_branch
774 if test -n "$rebase_root"
776 revisions
="$onto..$orig_head"
778 revisions
="${restrict_revision-$upstream}..$orig_head"