3 # Copyright (c) 2006 Johannes E. Schindelin
7 # This script makes it easy to fix up commits in the middle of a series,
8 # and rearrange commits.
10 # The original idea comes from Eric W. Biederman, in
11 # http://article.gmane.org/gmane.comp.version-control.git/22407
15 git-rebase [-i] [options] [--] <upstream> [<branch>]
16 git-rebase [-i] (--continue | --abort | --skip)
19 v,verbose display a diffstat of what changed upstream
20 onto= rebase onto given branch instead of upstream
21 p,preserve-merges try to recreate merges instead of ignoring them
22 s,strategy= use the given merge strategy
23 m,merge always used (no-op)
24 i,interactive always used (no-op)
26 continue continue rebasing process
27 abort abort rebasing process and restore original branch
28 skip skip current patch and continue rebasing process
29 no-verify override pre-rebase hook from stopping the operation
30 root rebase all reachable commmits up to the root(s)
36 DOTEST
="$GIT_DIR/rebase-merge"
37 TODO
="$DOTEST"/git-rebase-todo
40 SQUASH_MSG
="$DOTEST"/message-squash
41 REWRITTEN
="$DOTEST"/rewritten
42 DROPPED
="$DOTEST"/dropped
47 OK_TO_SKIP_PRE_REBASE
=
50 GIT_CHERRY_PICK_HELP
=" After resolving the conflicts,
51 mark the corrected paths with 'git add <paths>', and
52 run 'git rebase --continue'"
53 export GIT_CHERRY_PICK_HELP
64 test $status != 0 && printf "%s\n" "$output"
73 run_pre_rebase_hook
() {
74 if test -z "$OK_TO_SKIP_PRE_REBASE" &&
75 test -x "$GIT_DIR/hooks/pre-rebase"
77 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
{
78 echo >&2 "The pre-rebase hook refused to rebase."
84 require_clean_work_tree
() {
85 # test if working tree is dirty
86 git rev-parse
--verify HEAD
> /dev
/null
&&
87 git update-index
--ignore-submodules --refresh &&
88 git diff-files
--quiet --ignore-submodules &&
89 git diff-index
--cached --quiet HEAD
--ignore-submodules -- ||
90 die
"Working tree is dirty"
93 ORIG_REFLOG_ACTION
="$GIT_REFLOG_ACTION"
95 comment_for_reflog
() {
96 case "$ORIG_REFLOG_ACTION" in
98 GIT_REFLOG_ACTION
="rebase -i ($1)"
99 export GIT_REFLOG_ACTION
105 mark_action_done
() {
106 sed -e 1q
< "$TODO" >> "$DONE"
107 sed -e 1d
< "$TODO" >> "$TODO".new
108 mv -f "$TODO".new
"$TODO"
109 count
=$
(grep -c '^[^#]' < "$DONE")
110 total
=$
(($count+$
(grep -c '^[^#]' < "$TODO")))
111 if test "$last_count" != "$count"
114 printf "Rebasing (%d/%d)\r" $count $total
115 test -z "$VERBOSE" ||
echo
120 sha1_and_parents
="$(git rev-list --parents -1 "$1")"
121 case "$sha1_and_parents" in
123 git
diff --cc $sha1_and_parents
126 git diff-tree
-p "$1^!"
131 esac > "$DOTEST"/patch
132 test -f "$DOTEST"/message ||
133 git cat-file commit
"$1" |
sed "1,/^$/d" > "$DOTEST"/message
134 test -f "$DOTEST"/author-script ||
135 get_author_ident_from_commit
"$1" > "$DOTEST"/author-script
150 grep '^[^#]' "$1" >/dev
/null
155 case "$1" in -n) sha1
=$2; no_ff
=t
;; *) sha1
=$1 ;; esac
156 output git rev-parse
--verify $sha1 || die
"Invalid commit name: $sha1"
157 test -d "$REWRITTEN" &&
158 pick_one_preserving_merges
"$@" && return
159 if test ! -z "$REBASE_ROOT"
161 output git cherry-pick
"$@"
164 parent_sha1
=$
(git rev-parse
--verify $sha1^
) ||
165 die
"Could not get the parent of $sha1"
166 current_sha1
=$
(git rev-parse
--verify HEAD
)
167 if test "$no_ff$current_sha1" = "$parent_sha1"; then
168 output git
reset --hard $sha1
169 test "a$1" = a-n
&& output git
reset --soft $current_sha1
170 sha1
=$
(git rev-parse
--short $sha1)
171 output warn Fast forward to
$sha1
173 output git cherry-pick
"$@"
177 pick_one_preserving_merges
() {
188 sha1
=$
(git rev-parse
$sha1)
190 if test -f "$DOTEST"/current-commit
192 if test "$fast_forward" = t
194 cat "$DOTEST"/current-commit |
while read current_commit
196 git rev-parse HEAD
> "$REWRITTEN"/$current_commit
198 rm "$DOTEST"/current-commit ||
199 die
"Cannot write current commit's replacement sha1"
203 echo $sha1 >> "$DOTEST"/current-commit
205 # rewrite parents; if none were rewritten, we can fast-forward.
207 pend
=" $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)"
208 if test "$pend" = " "
212 while [ "$pend" != "" ]
214 p
=$
(expr "$pend" : ' \([^ ]*\)')
217 if test -f "$REWRITTEN"/$p
219 new_p
=$
(cat "$REWRITTEN"/$p)
221 # If the todo reordered commits, and our parent is marked for
222 # rewriting, but hasn't been gotten to yet, assume the user meant to
223 # drop it on top of the current HEAD
226 new_p
=$
(git rev-parse HEAD
)
229 test $p != $new_p && fast_forward
=f
230 case "$new_parents" in
232 ;; # do nothing; that parent is already there
234 new_parents
="$new_parents $new_p"
238 if test -f "$DROPPED"/$p
241 replacement
="$(cat "$DROPPED"/$p)"
242 test -z "$replacement" && replacement
=root
243 pend
=" $replacement$pend"
245 new_parents
="$new_parents $p"
249 case $fast_forward in
251 output warn
"Fast forward to $sha1"
252 output git
reset --hard $sha1 ||
253 die
"Cannot fast forward to $sha1"
256 first_parent
=$
(expr "$new_parents" : ' \([^ ]*\)')
260 # detach HEAD to current parent
261 output git checkout
$first_parent 2> /dev
/null ||
262 die
"Cannot move HEAD to $first_parent"
265 case "$new_parents" in
267 test "a$1" = a-n
&& die
"Refusing to squash a merge: $sha1"
270 author_script
=$
(get_author_ident_from_commit
$sha1)
271 eval "$author_script"
272 msg
="$(git cat-file commit $sha1 | sed -e '1,/^$/d')"
273 # No point in merging the first parent, that's HEAD
274 new_parents
=${new_parents# $first_parent}
275 if ! GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
276 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
277 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
278 output git merge
$STRATEGY -m "$msg" \
281 printf "%s\n" "$msg" > "$GIT_DIR"/MERGE_MSG
282 die_with_patch
$sha1 "Error redoing merge $sha1"
286 output git cherry-pick
"$@" ||
287 die_with_patch
$sha1 "Could not pick $sha1"
296 *1[0-9]|
*[04-9]) echo "$1"th
;;
303 make_squash_message
() {
304 if test -f "$SQUASH_MSG"; then
305 COUNT
=$
(($
(sed -n "s/^# This is [^0-9]*\([1-9][0-9]*\).*/\1/p" \
306 < "$SQUASH_MSG" |
sed -ne '$p')+1))
307 echo "# This is a combination of $COUNT commits."
308 sed -e 1d
-e '2,/^./{
313 echo "# This is a combination of two commits."
314 echo "# The first commit's message is:"
316 git cat-file commit HEAD |
sed -e '1,/^$/d'
319 echo "# This is the $(nth_string $COUNT) commit message:"
321 git cat-file commit
$1 |
sed -e '1,/^$/d'
324 peek_next_command
() {
325 sed -n "1s/ .*$//p" < "$TODO"
329 rm -f "$DOTEST"/message
"$DOTEST"/author-script \
330 "$DOTEST"/amend ||
exit
331 read command sha1 rest
< "$TODO"
337 comment_for_reflog pick
341 die_with_patch
$sha1 "Could not apply $sha1... $rest"
344 comment_for_reflog reword
348 die_with_patch
$sha1 "Could not apply $sha1... $rest"
352 comment_for_reflog edit
356 die_with_patch
$sha1 "Could not apply $sha1... $rest"
358 git rev-parse
--verify HEAD
> "$DOTEST"/amend
359 warn
"Stopped at $sha1... $rest"
360 warn
"You can amend the commit now, with"
362 warn
" git commit --amend"
364 warn
"Once you are satisfied with your changes, run"
366 warn
" git rebase --continue"
371 comment_for_reflog squash
373 test -f "$DONE" && has_action
"$DONE" ||
374 die
"Cannot 'squash' without a previous commit"
377 make_squash_message
$sha1 > "$MSG"
379 author_script
=$
(get_author_ident_from_commit HEAD
)
380 output git
reset --soft HEAD^
381 pick_one
-n $sha1 || failed
=t
382 case "$(peek_next_command)" in
387 cp "$MSG" "$SQUASH_MSG"
393 rm -f "$SQUASH_MSG" ||
exit
394 cp "$MSG" "$GIT_DIR"/SQUASH_MSG
395 rm -f "$GIT_DIR"/MERGE_MSG ||
exit
398 echo "$author_script" > "$DOTEST"/author-script
401 # This is like --amend, but with a different message
402 eval "$author_script"
403 GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
404 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
405 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
406 $USE_OUTPUT git commit
--no-verify \
407 $MSG_OPT "$EDIT_OR_FILE" || failed
=t
411 cp "$MSG" "$GIT_DIR"/MERGE_MSG
413 warn
"Could not apply $sha1... $rest"
414 die_with_patch
$sha1 ""
418 warn
"Unknown command: $command $sha1 $rest"
419 die
"Please fix this in the file $TODO."
422 test -s "$TODO" && return
424 comment_for_reflog finish
&&
425 HEADNAME
=$
(cat "$DOTEST"/head-name
) &&
426 OLDHEAD
=$
(cat "$DOTEST"/head) &&
427 SHORTONTO
=$
(git rev-parse
--short $
(cat "$DOTEST"/onto
)) &&
428 NEWHEAD
=$
(git rev-parse HEAD
) &&
431 message
="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO" &&
432 git update-ref
-m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
433 git symbolic-ref HEAD
$HEADNAME
436 test ! -f "$DOTEST"/verbose ||
437 git diff-tree
--stat $
(cat "$DOTEST"/head)..HEAD
441 warn
"Successfully rebased and updated $HEADNAME."
453 # skip picking commits whose parents are unchanged
454 skip_unnecessary_picks
() {
456 while read command sha1 rest
458 # fd=3 means we skip the command
459 case "$fd,$command,$(git rev-parse --verify --quiet $sha1^)" in
460 3,pick
,"$ONTO"*|
3,p
,"$ONTO"*)
461 # pick a commit whose parent is current $ONTO -> skip
471 echo "$command${sha1:+ }$sha1${rest:+ }$rest" >&$fd
472 done <"$TODO" >"$TODO.new" 3>>"$DONE" &&
473 mv -f "$TODO".new
"$TODO" ||
474 die
"Could not skip unnecessary pick commands"
477 # check if no other options are set
479 test $# -eq 2 -a "$2" = '--' &&
481 test -z "$PRESERVE_MERGES" &&
482 test -z "$STRATEGY" &&
486 get_saved_options
() {
487 test -d "$REWRITTEN" && PRESERVE_MERGES
=t
488 test -f "$DOTEST"/strategy
&& STRATEGY
="$(cat "$DOTEST"/strategy)"
489 test -f "$DOTEST"/verbose
&& VERBOSE
=t
490 test -f "$DOTEST"/rebase-root
&& REBASE_ROOT
=t
497 OK_TO_SKIP_PRE_REBASE
=yes
502 is_standalone
"$@" || usage
504 comment_for_reflog
continue
506 test -d "$DOTEST" || die
"No interactive rebase running"
509 git rev-parse
--verify HEAD
>/dev
/null ||
510 die
"Cannot read HEAD"
511 git update-index
--ignore-submodules --refresh &&
512 git diff-files
--quiet --ignore-submodules ||
513 die
"Working tree is dirty"
515 # do we have anything to commit?
516 if git diff-index
--cached --quiet --ignore-submodules HEAD
--
518 : Nothing to commit
-- skip this
520 test -f "$DOTEST"/author-script
&&
521 .
"$DOTEST"/author-script ||
522 die
"Cannot find the author identity"
524 if test -f "$DOTEST"/amend
526 amend
=$
(git rev-parse
--verify HEAD
)
527 test "$amend" = $
(cat "$DOTEST"/amend
) ||
529 You have uncommitted changes in your working tree. Please, commit them
530 first and then run 'git rebase --continue' again."
531 git
reset --soft HEAD^ ||
532 die
"Cannot rewind the HEAD"
534 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
&&
535 git commit
--no-verify -F "$DOTEST"/message
-e ||
{
536 test -n "$amend" && git
reset --soft $amend
537 die
"Could not commit staged changes."
541 require_clean_work_tree
545 is_standalone
"$@" || usage
547 comment_for_reflog abort
550 test -d "$DOTEST" || die
"No interactive rebase running"
552 HEADNAME
=$
(cat "$DOTEST"/head-name
)
553 HEAD
=$
(cat "$DOTEST"/head)
556 git symbolic-ref HEAD
$HEADNAME
559 output git
reset --hard $HEAD &&
564 is_standalone
"$@" || usage
566 comment_for_reflog skip
569 test -d "$DOTEST" || die
"No interactive rebase running"
571 output git
reset --hard && do_rest
576 STRATEGY
="-s "$
(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
585 # we use merge anyway
601 ONTO
=$
(git rev-parse
--verify "$1") ||
602 die
"Does not point to a valid commit: $1"
606 test -z "$REBASE_ROOT" -a $# -ge 1 -a $# -le 2 ||
607 test ! -z "$REBASE_ROOT" -a $# -le 1 || usage
609 die
"Interactive rebase already started"
611 git var GIT_COMMITTER_IDENT
>/dev
/null ||
612 die
"You need to set your committer info first"
614 if test -z "$REBASE_ROOT"
617 UPSTREAM
=$
(git rev-parse
--verify "$1") || die
"Invalid base"
618 test -z "$ONTO" && ONTO
=$UPSTREAM
624 die
"You must specify --onto when using --root"
626 run_pre_rebase_hook
"$UPSTREAM_ARG" "$@"
628 comment_for_reflog start
630 require_clean_work_tree
634 output git show-ref
--verify --quiet "refs/heads/$1" ||
635 die
"Invalid branchname: $1"
636 output git checkout
"$1" ||
637 die
"Could not checkout $1"
640 HEAD
=$
(git rev-parse
--verify HEAD
) || die
"No HEAD?"
641 mkdir
"$DOTEST" || die
"Could not create temporary $DOTEST"
643 : > "$DOTEST"/interactive || die
"Could not mark as interactive"
644 git symbolic-ref HEAD
> "$DOTEST"/head-name
2> /dev
/null ||
645 echo "detached HEAD" > "$DOTEST"/head-name
647 echo $HEAD > "$DOTEST"/head
648 case "$REBASE_ROOT" in
650 rm -f "$DOTEST"/rebase-root
;;
652 : >"$DOTEST"/rebase-root
;;
654 echo $ONTO > "$DOTEST"/onto
655 test -z "$STRATEGY" ||
echo "$STRATEGY" > "$DOTEST"/strategy
656 test t
= "$VERBOSE" && : > "$DOTEST"/verbose
657 if test t
= "$PRESERVE_MERGES"
659 # $REWRITTEN contains files for each commit that is
660 # reachable by at least one merge base of $HEAD and
661 # $UPSTREAM. They are not necessarily rewritten, but
662 # their children might be.
663 # This ensures that commits on merged, but otherwise
664 # unrelated side branches are left alone. (Think "X"
665 # in the man page's example.)
666 if test -z "$REBASE_ROOT"
668 mkdir
"$REWRITTEN" &&
669 for c
in $
(git merge-base
--all $HEAD $UPSTREAM)
671 echo $ONTO > "$REWRITTEN"/$c ||
672 die
"Could not init rewritten commits"
675 mkdir
"$REWRITTEN" &&
676 echo $ONTO > "$REWRITTEN"/root ||
677 die
"Could not init rewritten commits"
679 # No cherry-pick because our first pass is to determine
680 # parents to rewrite and skipping dropped commits would
681 # prematurely end our probe
683 first_after_upstream
="$(git rev-list --reverse --first-parent $UPSTREAM..$HEAD | head -n 1)"
685 MERGES_OPTION
="--no-merges --cherry-pick"
688 SHORTHEAD
=$
(git rev-parse
--short $HEAD)
689 SHORTONTO
=$
(git rev-parse
--short $ONTO)
690 if test -z "$REBASE_ROOT"
691 # this is now equivalent to ! -z "$UPSTREAM"
693 SHORTUPSTREAM
=$
(git rev-parse
--short $UPSTREAM)
694 REVISIONS
=$UPSTREAM...
$HEAD
695 SHORTREVISIONS
=$SHORTUPSTREAM..
$SHORTHEAD
697 REVISIONS
=$ONTO...
$HEAD
698 SHORTREVISIONS
=$SHORTHEAD
700 git rev-list
$MERGES_OPTION --pretty=oneline
--abbrev-commit \
701 --abbrev=7 --reverse --left-right --topo-order \
703 sed -n "s/^>//p" |
while read shortsha1 rest
705 if test t
!= "$PRESERVE_MERGES"
707 echo "pick $shortsha1 $rest" >> "$TODO"
709 sha1
=$
(git rev-parse
$shortsha1)
710 if test -z "$REBASE_ROOT"
713 for p
in $
(git rev-list
--parents -1 $sha1 | cut
-d' ' -s -f2-)
715 if test -f "$REWRITTEN"/$p -a \
( $p != $ONTO -o $sha1 = $first_after_upstream \
)
723 if test f
= "$preserve"
725 touch "$REWRITTEN"/$sha1
726 echo "pick $shortsha1 $rest" >> "$TODO"
731 # Watch for commits that been dropped by --cherry-pick
732 if test t
= "$PRESERVE_MERGES"
735 # Save all non-cherry-picked changes
736 git rev-list
$REVISIONS --left-right --cherry-pick | \
737 sed -n "s/^>//p" > "$DOTEST"/not-cherry-picks
738 # Now all commits and note which ones are missing in
739 # not-cherry-picks and hence being dropped
740 git rev-list
$REVISIONS |
743 if test -f "$REWRITTEN"/$rev -a "$(grep "$rev" "$DOTEST"/not-cherry-picks)" = ""
745 # Use -f2 because if rev-list is telling us this commit is
746 # not worthwhile, we don't want to track its multiple heads,
747 # just the history of its first-parent for others that will
748 # be rebasing on top of it
749 git rev-list
--parents -1 $rev | cut
-d' ' -s -f2 > "$DROPPED"/$rev
750 short
=$
(git rev-list
-1 --abbrev-commit --abbrev=7 $rev)
751 grep -v "^[a-z][a-z]* $short" <"$TODO" > "${TODO}2" ; mv "${TODO}2" "$TODO"
757 test -s "$TODO" ||
echo noop
>> "$TODO"
758 cat >> "$TODO" << EOF
760 # Rebase $SHORTREVISIONS onto $SHORTONTO
763 # p, pick = use commit
764 # r, reword = use commit, but edit the commit message
765 # e, edit = use commit, but stop for amending
766 # s, squash = use commit, but meld into previous commit
768 # If you remove a line here THAT COMMIT WILL BE LOST.
769 # However, if you remove everything, the rebase will be aborted.
773 has_action
"$TODO" ||
774 die_abort
"Nothing to do"
776 cp "$TODO" "$TODO".backup
777 git_editor
"$TODO" ||
778 die
"Could not execute editor"
780 has_action
"$TODO" ||
781 die_abort
"Nothing to do"
783 test -d "$REWRITTEN" || skip_unnecessary_picks
785 git update-ref ORIG_HEAD
$HEAD
786 output git checkout
$ONTO && do_rest