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
35 DOTEST
="$GIT_DIR/rebase-merge"
36 TODO
="$DOTEST"/git-rebase-todo
39 SQUASH_MSG
="$DOTEST"/message-squash
40 REWRITTEN
="$DOTEST"/rewritten
41 DROPPED
="$DOTEST"/dropped
46 OK_TO_SKIP_PRE_REBASE
=
48 GIT_CHERRY_PICK_HELP
=" After resolving the conflicts,
49 mark the corrected paths with 'git add <paths>', and
50 run 'git rebase --continue'"
51 export GIT_CHERRY_PICK_HELP
62 test $status != 0 && printf "%s\n" "$output"
71 run_pre_rebase_hook
() {
72 if test -z "$OK_TO_SKIP_PRE_REBASE" &&
73 test -x "$GIT_DIR/hooks/pre-rebase"
75 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
{
76 echo >&2 "The pre-rebase hook refused to rebase."
82 require_clean_work_tree
() {
83 # test if working tree is dirty
84 git rev-parse
--verify HEAD
> /dev
/null
&&
85 git update-index
--ignore-submodules --refresh &&
86 git diff-files
--quiet --ignore-submodules &&
87 git diff-index
--cached --quiet HEAD
--ignore-submodules -- ||
88 die
"Working tree is dirty"
91 ORIG_REFLOG_ACTION
="$GIT_REFLOG_ACTION"
93 comment_for_reflog
() {
94 case "$ORIG_REFLOG_ACTION" in
96 GIT_REFLOG_ACTION
="rebase -i ($1)"
97 export GIT_REFLOG_ACTION
103 mark_action_done
() {
104 sed -e 1q
< "$TODO" >> "$DONE"
105 sed -e 1d
< "$TODO" >> "$TODO".new
106 mv -f "$TODO".new
"$TODO"
107 count
=$
(grep -c '^[^#]' < "$DONE")
108 total
=$
(($count+$
(grep -c '^[^#]' < "$TODO")))
109 if test "$last_count" != "$count"
112 printf "Rebasing (%d/%d)\r" $count $total
113 test -z "$VERBOSE" ||
echo
118 parent_sha1
=$
(git rev-parse
--verify "$1"^
) ||
119 die
"Cannot get patch for $1^"
120 git diff-tree
-p "$parent_sha1"..
"$1" > "$DOTEST"/patch
121 test -f "$DOTEST"/message ||
122 git cat-file commit
"$1" |
sed "1,/^$/d" > "$DOTEST"/message
123 test -f "$DOTEST"/author-script ||
124 get_author_ident_from_commit
"$1" > "$DOTEST"/author-script
139 grep '^[^#]' "$1" >/dev
/null
144 case "$1" in -n) sha1
=$2; no_ff
=t
;; *) sha1
=$1 ;; esac
145 output git rev-parse
--verify $sha1 || die
"Invalid commit name: $sha1"
146 test -d "$REWRITTEN" &&
147 pick_one_preserving_merges
"$@" && return
148 parent_sha1
=$
(git rev-parse
--verify $sha1^
) ||
149 die
"Could not get the parent of $sha1"
150 current_sha1
=$
(git rev-parse
--verify HEAD
)
151 if test "$no_ff$current_sha1" = "$parent_sha1"; then
152 output git
reset --hard $sha1
153 test "a$1" = a-n
&& output git
reset --soft $current_sha1
154 sha1
=$
(git rev-parse
--short $sha1)
155 output warn Fast forward to
$sha1
157 output git cherry-pick
"$@"
161 pick_one_preserving_merges
() {
172 sha1
=$
(git rev-parse
$sha1)
174 if test -f "$DOTEST"/current-commit
176 if test "$fast_forward" = t
178 cat "$DOTEST"/current-commit |
while read current_commit
180 git rev-parse HEAD
> "$REWRITTEN"/$current_commit
182 rm "$DOTEST"/current-commit ||
183 die
"Cannot write current commit's replacement sha1"
187 echo $sha1 >> "$DOTEST"/current-commit
189 # rewrite parents; if none were rewritten, we can fast-forward.
191 pend
=" $(git rev-list --parents -1 $sha1 | cut -d' ' -f2-)"
192 while [ "$pend" != "" ]
194 p
=$
(expr "$pend" : ' \([^ ]*\)')
197 if test -f "$REWRITTEN"/$p
199 new_p
=$
(cat "$REWRITTEN"/$p)
201 # If the todo reordered commits, and our parent is marked for
202 # rewriting, but hasn't been gotten to yet, assume the user meant to
203 # drop it on top of the current HEAD
206 new_p
=$
(git rev-parse HEAD
)
209 test $p != $new_p && fast_forward
=f
210 case "$new_parents" in
212 ;; # do nothing; that parent is already there
214 new_parents
="$new_parents $new_p"
218 if test -f "$DROPPED"/$p
221 pend
=" $(cat "$DROPPED"/$p)$pend"
223 new_parents
="$new_parents $p"
227 case $fast_forward in
229 output warn
"Fast forward to $sha1"
230 output git
reset --hard $sha1 ||
231 die
"Cannot fast forward to $sha1"
234 first_parent
=$
(expr "$new_parents" : ' \([^ ]*\)')
238 # detach HEAD to current parent
239 output git checkout
$first_parent 2> /dev
/null ||
240 die
"Cannot move HEAD to $first_parent"
243 case "$new_parents" in
245 test "a$1" = a-n
&& die
"Refusing to squash a merge: $sha1"
248 author_script
=$
(get_author_ident_from_commit
$sha1)
249 eval "$author_script"
250 msg
="$(git cat-file commit $sha1 | sed -e '1,/^$/d')"
251 # No point in merging the first parent, that's HEAD
252 new_parents
=${new_parents# $first_parent}
253 if ! GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
254 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
255 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
256 output git merge
$STRATEGY -m "$msg" \
259 printf "%s\n" "$msg" > "$GIT_DIR"/MERGE_MSG
260 die_with_patch
$sha1 "Error redoing merge $sha1"
264 output git cherry-pick
"$@" ||
265 die_with_patch
$sha1 "Could not pick $sha1"
274 *1[0-9]|
*[04-9]) echo "$1"th
;;
281 make_squash_message
() {
282 if test -f "$SQUASH_MSG"; then
283 COUNT
=$
(($
(sed -n "s/^# This is [^0-9]*\([1-9][0-9]*\).*/\1/p" \
284 < "$SQUASH_MSG" |
sed -ne '$p')+1))
285 echo "# This is a combination of $COUNT commits."
286 sed -e 1d
-e '2,/^./{
291 echo "# This is a combination of two commits."
292 echo "# The first commit's message is:"
294 git cat-file commit HEAD |
sed -e '1,/^$/d'
297 echo "# This is the $(nth_string $COUNT) commit message:"
299 git cat-file commit
$1 |
sed -e '1,/^$/d'
302 peek_next_command
() {
303 sed -n "1s/ .*$//p" < "$TODO"
307 rm -f "$DOTEST"/message
"$DOTEST"/author-script \
308 "$DOTEST"/amend ||
exit
309 read command sha1 rest
< "$TODO"
315 comment_for_reflog pick
319 die_with_patch
$sha1 "Could not apply $sha1... $rest"
322 comment_for_reflog edit
326 die_with_patch
$sha1 "Could not apply $sha1... $rest"
328 git rev-parse
--verify HEAD
> "$DOTEST"/amend
329 warn
"Stopped at $sha1... $rest"
330 warn
"You can amend the commit now, with"
332 warn
" git commit --amend"
334 warn
"Once you are satisfied with your changes, run"
336 warn
" git rebase --continue"
341 comment_for_reflog squash
343 has_action
"$DONE" ||
344 die
"Cannot 'squash' without a previous commit"
347 make_squash_message
$sha1 > "$MSG"
349 author_script
=$
(get_author_ident_from_commit HEAD
)
350 output git
reset --soft HEAD^
351 pick_one
-n $sha1 || failed
=t
352 case "$(peek_next_command)" in
358 cp "$MSG" "$SQUASH_MSG"
365 rm -f "$SQUASH_MSG" ||
exit
366 cp "$MSG" "$GIT_DIR"/SQUASH_MSG
367 rm -f "$GIT_DIR"/MERGE_MSG ||
exit
370 echo "$author_script" > "$DOTEST"/author-script
373 # This is like --amend, but with a different message
374 eval "$author_script"
375 GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
376 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
377 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
378 $USE_OUTPUT git commit
--no-verify $MSG_OPT "$MSG_FILE" $EDIT_COMMIT || failed
=t
382 cp "$MSG" "$GIT_DIR"/MERGE_MSG
384 warn
"Could not apply $sha1... $rest"
385 die_with_patch
$sha1 ""
389 warn
"Unknown command: $command $sha1 $rest"
390 die_with_patch
$sha1 "Please fix this in the file $TODO."
393 test -s "$TODO" && return
395 comment_for_reflog finish
&&
396 HEADNAME
=$
(cat "$DOTEST"/head-name
) &&
397 OLDHEAD
=$
(cat "$DOTEST"/head) &&
398 SHORTONTO
=$
(git rev-parse
--short $
(cat "$DOTEST"/onto
)) &&
399 NEWHEAD
=$
(git rev-parse HEAD
) &&
402 message
="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO)" &&
403 git update-ref
-m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
404 git symbolic-ref HEAD
$HEADNAME
407 test ! -f "$DOTEST"/verbose ||
408 git diff-tree
--stat $
(cat "$DOTEST"/head)..HEAD
412 warn
"Successfully rebased and updated $HEADNAME."
424 # check if no other options are set
426 test $# -eq 2 -a "$2" = '--' &&
428 test -z "$PRESERVE_MERGES" &&
429 test -z "$STRATEGY" &&
433 get_saved_options
() {
434 test -d "$REWRITTEN" && PRESERVE_MERGES
=t
435 test -f "$DOTEST"/strategy
&& STRATEGY
="$(cat "$DOTEST"/strategy)"
436 test -f "$DOTEST"/verbose
&& VERBOSE
=t
443 OK_TO_SKIP_PRE_REBASE
=yes
448 is_standalone
"$@" || usage
450 comment_for_reflog
continue
452 test -d "$DOTEST" || die
"No interactive rebase running"
455 git rev-parse
--verify HEAD
>/dev
/null ||
456 die
"Cannot read HEAD"
457 git update-index
--ignore-submodules --refresh &&
458 git diff-files
--quiet --ignore-submodules ||
459 die
"Working tree is dirty"
461 # do we have anything to commit?
462 if git diff-index
--cached --quiet --ignore-submodules HEAD
--
464 : Nothing to commit
-- skip this
466 .
"$DOTEST"/author-script ||
467 die
"Cannot find the author identity"
469 if test -f "$DOTEST"/amend
471 amend
=$
(git rev-parse
--verify HEAD
)
472 test "$amend" = $
(cat "$DOTEST"/amend
) ||
474 You have uncommitted changes in your working tree. Please, commit them
475 first and then run 'git rebase --continue' again."
476 git
reset --soft HEAD^ ||
477 die
"Cannot rewind the HEAD"
479 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
&&
480 git commit
--no-verify -F "$DOTEST"/message
-e ||
{
481 test -n "$amend" && git
reset --soft $amend
482 die
"Could not commit staged changes."
486 require_clean_work_tree
490 is_standalone
"$@" || usage
492 comment_for_reflog abort
495 test -d "$DOTEST" || die
"No interactive rebase running"
497 HEADNAME
=$
(cat "$DOTEST"/head-name
)
498 HEAD
=$
(cat "$DOTEST"/head)
501 git symbolic-ref HEAD
$HEADNAME
504 output git
reset --hard $HEAD &&
509 is_standalone
"$@" || usage
511 comment_for_reflog skip
514 test -d "$DOTEST" || die
"No interactive rebase running"
516 output git
reset --hard && do_rest
521 STRATEGY
="-s "$
(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
530 # we use merge anyway
543 ONTO
=$
(git rev-parse
--verify "$1") ||
544 die
"Does not point to a valid commit: $1"
548 run_pre_rebase_hook
${1+"$@"}
549 test $# -eq 1 -o $# -eq 2 || usage
551 die
"Interactive rebase already started"
553 git var GIT_COMMITTER_IDENT
>/dev
/null ||
554 die
"You need to set your committer info first"
556 comment_for_reflog start
558 require_clean_work_tree
560 UPSTREAM
=$
(git rev-parse
--verify "$1") || die
"Invalid base"
561 test -z "$ONTO" && ONTO
=$UPSTREAM
565 output git show-ref
--verify --quiet "refs/heads/$2" ||
566 die
"Invalid branchname: $2"
567 output git checkout
"$2" ||
568 die
"Could not checkout $2"
571 HEAD
=$
(git rev-parse
--verify HEAD
) || die
"No HEAD?"
572 mkdir
"$DOTEST" || die
"Could not create temporary $DOTEST"
574 : > "$DOTEST"/interactive || die
"Could not mark as interactive"
575 git symbolic-ref HEAD
> "$DOTEST"/head-name
2> /dev
/null ||
576 echo "detached HEAD" > "$DOTEST"/head-name
578 echo $HEAD > "$DOTEST"/head
579 echo $UPSTREAM > "$DOTEST"/upstream
580 echo $ONTO > "$DOTEST"/onto
581 test -z "$STRATEGY" ||
echo "$STRATEGY" > "$DOTEST"/strategy
582 test t
= "$VERBOSE" && : > "$DOTEST"/verbose
583 if test t
= "$PRESERVE_MERGES"
585 # $REWRITTEN contains files for each commit that is
586 # reachable by at least one merge base of $HEAD and
587 # $UPSTREAM. They are not necessarily rewritten, but
588 # their children might be.
589 # This ensures that commits on merged, but otherwise
590 # unrelated side branches are left alone. (Think "X"
591 # in the man page's example.)
592 mkdir
"$REWRITTEN" &&
593 for c
in $
(git merge-base
--all $HEAD $UPSTREAM)
595 echo $ONTO > "$REWRITTEN"/$c ||
596 die
"Could not init rewritten commits"
598 # No cherry-pick because our first pass is to determine
599 # parents to rewrite and skipping dropped commits would
600 # prematurely end our probe
602 first_after_upstream
="$(git rev-list --reverse --first-parent $UPSTREAM..$HEAD | head -n 1)"
604 MERGES_OPTION
="--no-merges --cherry-pick"
607 SHORTUPSTREAM
=$
(git rev-parse
--short $UPSTREAM)
608 SHORTHEAD
=$
(git rev-parse
--short $HEAD)
609 SHORTONTO
=$
(git rev-parse
--short $ONTO)
610 git rev-list
$MERGES_OPTION --pretty=oneline
--abbrev-commit \
611 --abbrev=7 --reverse --left-right --topo-order \
612 $UPSTREAM...
$HEAD | \
613 sed -n "s/^>//p" |
while read shortsha1 rest
615 if test t
!= "$PRESERVE_MERGES"
617 echo "pick $shortsha1 $rest" >> "$TODO"
619 sha1
=$
(git rev-parse
$shortsha1)
621 for p
in $
(git rev-list
--parents -1 $sha1 | cut
-d' ' -f2-)
623 if test -f "$REWRITTEN"/$p -a \
( $p != $UPSTREAM -o $sha1 = $first_after_upstream \
)
628 if test f
= "$preserve"
630 touch "$REWRITTEN"/$sha1
631 echo "pick $shortsha1 $rest" >> "$TODO"
636 # Watch for commits that been dropped by --cherry-pick
637 if test t
= "$PRESERVE_MERGES"
640 # Save all non-cherry-picked changes
641 git rev-list
$UPSTREAM...
$HEAD --left-right --cherry-pick | \
642 sed -n "s/^>//p" > "$DOTEST"/not-cherry-picks
643 # Now all commits and note which ones are missing in
644 # not-cherry-picks and hence being dropped
645 git rev-list
$UPSTREAM..
$HEAD |
648 if test -f "$REWRITTEN"/$rev -a "$(grep "$rev" "$DOTEST"/not-cherry-picks)" = ""
650 # Use -f2 because if rev-list is telling us this commit is
651 # not worthwhile, we don't want to track its multiple heads,
652 # just the history of its first-parent for others that will
653 # be rebasing on top of it
654 git rev-list
--parents -1 $rev | cut
-d' ' -f2 > "$DROPPED"/$rev
655 short
=$
(git rev-list
-1 --abbrev-commit --abbrev=7 $rev)
656 grep -v "^[a-z][a-z]* $short" <"$TODO" > "${TODO}2" ; mv "${TODO}2" "$TODO"
661 test -s "$TODO" ||
echo noop
>> "$TODO"
662 cat >> "$TODO" << EOF
664 # Rebase $SHORTUPSTREAM..$SHORTHEAD onto $SHORTONTO
667 # p, pick = use commit
668 # e, edit = use commit, but stop for amending
669 # s, squash = use commit, but meld into previous commit
671 # If you remove a line here THAT COMMIT WILL BE LOST.
672 # However, if you remove everything, the rebase will be aborted.
676 has_action
"$TODO" ||
677 die_abort
"Nothing to do"
679 cp "$TODO" "$TODO".backup
680 git_editor
"$TODO" ||
681 die
"Could not execute editor"
683 has_action
"$TODO" ||
684 die_abort
"Nothing to do"
686 git update-ref ORIG_HEAD
$HEAD
687 output git checkout
$ONTO && do_rest