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
34 DOTEST
="$GIT_DIR/rebase-merge"
35 TODO
="$DOTEST"/git-rebase-todo
38 SQUASH_MSG
="$DOTEST"/message-squash
39 REWRITTEN
="$DOTEST"/rewritten
40 DROPPED
="$DOTEST"/dropped
46 GIT_CHERRY_PICK_HELP
=" After resolving the conflicts,
47 mark the corrected paths with 'git add <paths>', and
48 run 'git rebase --continue'"
49 export GIT_CHERRY_PICK_HELP
60 test $status != 0 && printf "%s\n" "$output"
69 run_pre_rebase_hook
() {
70 if test -x "$GIT_DIR/hooks/pre-rebase"
72 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
{
73 echo >&2 "The pre-rebase hook refused to rebase."
79 require_clean_work_tree
() {
80 # test if working tree is dirty
81 git rev-parse
--verify HEAD
> /dev
/null
&&
82 git update-index
--ignore-submodules --refresh &&
83 git diff-files
--quiet --ignore-submodules &&
84 git diff-index
--cached --quiet HEAD
--ignore-submodules -- ||
85 die
"Working tree is dirty"
88 ORIG_REFLOG_ACTION
="$GIT_REFLOG_ACTION"
90 comment_for_reflog
() {
91 case "$ORIG_REFLOG_ACTION" in
93 GIT_REFLOG_ACTION
="rebase -i ($1)"
94 export GIT_REFLOG_ACTION
100 mark_action_done
() {
101 sed -e 1q
< "$TODO" >> "$DONE"
102 sed -e 1d
< "$TODO" >> "$TODO".new
103 mv -f "$TODO".new
"$TODO"
104 count
=$
(grep -c '^[^#]' < "$DONE")
105 total
=$
(($count+$
(grep -c '^[^#]' < "$TODO")))
106 if test "$last_count" != "$count"
109 printf "Rebasing (%d/%d)\r" $count $total
110 test -z "$VERBOSE" ||
echo
115 parent_sha1
=$
(git rev-parse
--verify "$1"^
) ||
116 die
"Cannot get patch for $1^"
117 git diff-tree
-p "$parent_sha1"..
"$1" > "$DOTEST"/patch
118 test -f "$DOTEST"/message ||
119 git cat-file commit
"$1" |
sed "1,/^$/d" > "$DOTEST"/message
120 test -f "$DOTEST"/author-script ||
121 get_author_ident_from_commit
"$1" > "$DOTEST"/author-script
136 grep '^[^#]' "$1" >/dev
/null
141 case "$1" in -n) sha1
=$2; no_ff
=t
;; *) sha1
=$1 ;; esac
142 output git rev-parse
--verify $sha1 || die
"Invalid commit name: $sha1"
143 test -d "$REWRITTEN" &&
144 pick_one_preserving_merges
"$@" && return
145 parent_sha1
=$
(git rev-parse
--verify $sha1^
) ||
146 die
"Could not get the parent of $sha1"
147 current_sha1
=$
(git rev-parse
--verify HEAD
)
148 if test "$no_ff$current_sha1" = "$parent_sha1"; then
149 output git
reset --hard $sha1
150 test "a$1" = a-n
&& output git
reset --soft $current_sha1
151 sha1
=$
(git rev-parse
--short $sha1)
152 output warn Fast forward to
$sha1
154 output git cherry-pick
"$@"
158 pick_one_preserving_merges
() {
169 sha1
=$
(git rev-parse
$sha1)
171 if test -f "$DOTEST"/current-commit
173 if [ "$fast_forward" == "t" ]
175 cat "$DOTEST"/current-commit |
while read current_commit
177 git rev-parse HEAD
> "$REWRITTEN"/$current_commit
179 rm "$DOTEST"/current-commit ||
180 die
"Cannot write current commit's replacement sha1"
184 echo $sha1 >> "$DOTEST"/current-commit
186 # rewrite parents; if none were rewritten, we can fast-forward.
188 pend
=" $(git rev-list --parents -1 $sha1 | cut -d' ' -f2-)"
189 while [ "$pend" != "" ]
191 p
=$
(expr "$pend" : ' \([^ ]*\)')
194 if test -f "$REWRITTEN"/$p
196 new_p
=$
(cat "$REWRITTEN"/$p)
197 test $p != $new_p && fast_forward
=f
198 case "$new_parents" in
200 ;; # do nothing; that parent is already there
202 new_parents
="$new_parents $new_p"
206 if test -f "$DROPPED"/$p
209 pend
=" $(cat "$DROPPED"/$p)$pend"
211 new_parents
="$new_parents $p"
215 case $fast_forward in
217 output warn
"Fast forward to $sha1"
218 output git
reset --hard $sha1 ||
219 die
"Cannot fast forward to $sha1"
222 first_parent
=$
(expr "$new_parents" : ' \([^ ]*\)')
226 # detach HEAD to current parent
227 output git checkout
$first_parent 2> /dev
/null ||
228 die
"Cannot move HEAD to $first_parent"
231 case "$new_parents" in
233 test "a$1" = a-n
&& die
"Refusing to squash a merge: $sha1"
236 author_script
=$
(get_author_ident_from_commit
$sha1)
237 eval "$author_script"
238 msg
="$(git cat-file commit $sha1 | sed -e '1,/^$/d')"
239 # No point in merging the first parent, that's HEAD
240 new_parents
=${new_parents# $first_parent}
241 if ! GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
242 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
243 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
244 output git merge
$STRATEGY -m "$msg" \
248 printf "%s\n" "$msg" > "$GIT_DIR"/MERGE_MSG
249 die Error redoing merge
$sha1
253 output git cherry-pick
"$@" ||
254 die_with_patch
$sha1 "Could not pick $sha1"
263 *1[0-9]|
*[04-9]) echo "$1"th
;;
270 make_squash_message
() {
271 if test -f "$SQUASH_MSG"; then
272 COUNT
=$
(($
(sed -n "s/^# This is [^0-9]*\([1-9][0-9]*\).*/\1/p" \
273 < "$SQUASH_MSG" |
sed -ne '$p')+1))
274 echo "# This is a combination of $COUNT commits."
275 sed -e 1d
-e '2,/^./{
280 echo "# This is a combination of two commits."
281 echo "# The first commit's message is:"
283 git cat-file commit HEAD |
sed -e '1,/^$/d'
286 echo "# This is the $(nth_string $COUNT) commit message:"
288 git cat-file commit
$1 |
sed -e '1,/^$/d'
291 peek_next_command
() {
292 sed -n "1s/ .*$//p" < "$TODO"
296 rm -f "$DOTEST"/message
"$DOTEST"/author-script \
297 "$DOTEST"/amend ||
exit
298 read command sha1 rest
< "$TODO"
304 comment_for_reflog pick
308 die_with_patch
$sha1 "Could not apply $sha1... $rest"
311 comment_for_reflog edit
315 die_with_patch
$sha1 "Could not apply $sha1... $rest"
317 git rev-parse
--verify HEAD
> "$DOTEST"/amend
318 warn
"Stopped at $sha1... $rest"
319 warn
"You can amend the commit now, with"
321 warn
" git commit --amend"
323 warn
"Once you are satisfied with your changes, run"
325 warn
" git rebase --continue"
330 comment_for_reflog squash
332 has_action
"$DONE" ||
333 die
"Cannot 'squash' without a previous commit"
336 make_squash_message
$sha1 > "$MSG"
338 author_script
=$
(get_author_ident_from_commit HEAD
)
339 output git
reset --soft HEAD^
340 pick_one
-n $sha1 || failed
=t
341 case "$(peek_next_command)" in
347 cp "$MSG" "$SQUASH_MSG"
354 rm -f "$SQUASH_MSG" ||
exit
355 cp "$MSG" "$GIT_DIR"/SQUASH_MSG
356 rm -f "$GIT_DIR"/MERGE_MSG ||
exit
359 echo "$author_script" > "$DOTEST"/author-script
362 # This is like --amend, but with a different message
363 eval "$author_script"
364 GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
365 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
366 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
367 $USE_OUTPUT git commit
--no-verify $MSG_OPT "$MSG_FILE" $EDIT_COMMIT || failed
=t
371 cp "$MSG" "$GIT_DIR"/MERGE_MSG
373 warn
"Could not apply $sha1... $rest"
374 die_with_patch
$sha1 ""
378 warn
"Unknown command: $command $sha1 $rest"
379 die_with_patch
$sha1 "Please fix this in the file $TODO."
382 test -s "$TODO" && return
384 comment_for_reflog finish
&&
385 HEADNAME
=$
(cat "$DOTEST"/head-name
) &&
386 OLDHEAD
=$
(cat "$DOTEST"/head) &&
387 SHORTONTO
=$
(git rev-parse
--short $
(cat "$DOTEST"/onto
)) &&
388 NEWHEAD
=$
(git rev-parse HEAD
) &&
391 message
="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO)" &&
392 git update-ref
-m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
393 git symbolic-ref HEAD
$HEADNAME
396 test ! -f "$DOTEST"/verbose ||
397 git diff-tree
--stat $
(cat "$DOTEST"/head)..HEAD
401 warn
"Successfully rebased and updated $HEADNAME."
413 # check if no other options are set
415 test $# -eq 2 -a "$2" = '--' &&
417 test -z "$PRESERVE_MERGES" &&
418 test -z "$STRATEGY" &&
422 get_saved_options
() {
423 test -d "$REWRITTEN" && PRESERVE_MERGES
=t
424 test -f "$DOTEST"/strategy
&& STRATEGY
="$(cat "$DOTEST"/strategy)"
425 test -f "$DOTEST"/verbose
&& VERBOSE
=t
432 is_standalone
"$@" || usage
434 comment_for_reflog
continue
436 test -d "$DOTEST" || die
"No interactive rebase running"
439 git rev-parse
--verify HEAD
>/dev
/null ||
440 die
"Cannot read HEAD"
441 git update-index
--ignore-submodules --refresh &&
442 git diff-files
--quiet --ignore-submodules ||
443 die
"Working tree is dirty"
445 # do we have anything to commit?
446 if git diff-index
--cached --quiet --ignore-submodules HEAD
--
448 : Nothing to commit
-- skip this
450 .
"$DOTEST"/author-script ||
451 die
"Cannot find the author identity"
453 if test -f "$DOTEST"/amend
455 amend
=$
(git rev-parse
--verify HEAD
)
456 test "$amend" = $
(cat "$DOTEST"/amend
) ||
458 You have uncommitted changes in your working tree. Please, commit them
459 first and then run 'git rebase --continue' again."
460 git
reset --soft HEAD^ ||
461 die
"Cannot rewind the HEAD"
463 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
&&
464 git commit
--no-verify -F "$DOTEST"/message
-e ||
{
465 test -n "$amend" && git
reset --soft $amend
466 die
"Could not commit staged changes."
470 require_clean_work_tree
474 is_standalone
"$@" || usage
476 comment_for_reflog abort
479 test -d "$DOTEST" || die
"No interactive rebase running"
481 HEADNAME
=$
(cat "$DOTEST"/head-name
)
482 HEAD
=$
(cat "$DOTEST"/head)
485 git symbolic-ref HEAD
$HEADNAME
488 output git
reset --hard $HEAD &&
493 is_standalone
"$@" || usage
495 comment_for_reflog skip
498 test -d "$DOTEST" || die
"No interactive rebase running"
500 output git
reset --hard && do_rest
505 STRATEGY
="-s "$
(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
514 # we use merge anyway
527 ONTO
=$
(git rev-parse
--verify "$1") ||
528 die
"Does not point to a valid commit: $1"
532 run_pre_rebase_hook
${1+"$@"}
533 test $# -eq 1 -o $# -eq 2 || usage
535 die
"Interactive rebase already started"
537 git var GIT_COMMITTER_IDENT
>/dev
/null ||
538 die
"You need to set your committer info first"
540 comment_for_reflog start
542 require_clean_work_tree
544 UPSTREAM
=$
(git rev-parse
--verify "$1") || die
"Invalid base"
545 test -z "$ONTO" && ONTO
=$UPSTREAM
549 output git show-ref
--verify --quiet "refs/heads/$2" ||
550 die
"Invalid branchname: $2"
551 output git checkout
"$2" ||
552 die
"Could not checkout $2"
555 HEAD
=$
(git rev-parse
--verify HEAD
) || die
"No HEAD?"
556 mkdir
"$DOTEST" || die
"Could not create temporary $DOTEST"
558 : > "$DOTEST"/interactive || die
"Could not mark as interactive"
559 git symbolic-ref HEAD
> "$DOTEST"/head-name
2> /dev
/null ||
560 echo "detached HEAD" > "$DOTEST"/head-name
562 echo $HEAD > "$DOTEST"/head
563 echo $UPSTREAM > "$DOTEST"/upstream
564 echo $ONTO > "$DOTEST"/onto
565 test -z "$STRATEGY" ||
echo "$STRATEGY" > "$DOTEST"/strategy
566 test t
= "$VERBOSE" && : > "$DOTEST"/verbose
567 if test t
= "$PRESERVE_MERGES"
569 # $REWRITTEN contains files for each commit that is
570 # reachable by at least one merge base of $HEAD and
571 # $UPSTREAM. They are not necessarily rewritten, but
572 # their children might be.
573 # This ensures that commits on merged, but otherwise
574 # unrelated side branches are left alone. (Think "X"
575 # in the man page's example.)
576 mkdir
"$REWRITTEN" &&
577 for c
in $
(git merge-base
--all $HEAD $UPSTREAM)
579 echo $ONTO > "$REWRITTEN"/$c ||
580 die
"Could not init rewritten commits"
582 # No cherry-pick because our first pass is to determine
583 # parents to rewrite and skipping dropped commits would
584 # prematurely end our probe
586 first_after_upstream
="$(git rev-list --reverse --first-parent $UPSTREAM..$HEAD | head -n 1)"
588 MERGES_OPTION
="--no-merges --cherry-pick"
591 SHORTUPSTREAM
=$
(git rev-parse
--short $UPSTREAM)
592 SHORTHEAD
=$
(git rev-parse
--short $HEAD)
593 SHORTONTO
=$
(git rev-parse
--short $ONTO)
594 git rev-list
$MERGES_OPTION --pretty=oneline
--abbrev-commit \
595 --abbrev=7 --reverse --left-right --topo-order \
596 $UPSTREAM...
$HEAD | \
597 sed -n "s/^>//p" |
while read shortsha1 rest
599 if test t
!= "$PRESERVE_MERGES"
601 echo "pick $shortsha1 $rest" >> "$TODO"
603 sha1
=$
(git rev-parse
$shortsha1)
605 for p
in $
(git rev-list
--parents -1 $sha1 | cut
-d' ' -f2-)
607 if test -f "$REWRITTEN"/$p -a \
( $p != $UPSTREAM -o $sha1 = $first_after_upstream \
)
612 if test f
= "$preserve"
614 touch "$REWRITTEN"/$sha1
615 echo "pick $shortsha1 $rest" >> "$TODO"
620 # Watch for commits that been dropped by --cherry-pick
621 if test t
= "$PRESERVE_MERGES"
624 # Save all non-cherry-picked changes
625 git rev-list
$UPSTREAM...
$HEAD --left-right --cherry-pick | \
626 sed -n "s/^>//p" > "$DOTEST"/not-cherry-picks
627 # Now all commits and note which ones are missing in
628 # not-cherry-picks and hence being dropped
629 git rev-list
$UPSTREAM...
$HEAD --left-right | \
630 sed -n "s/^>//p" |
while read rev
632 if test -f "$REWRITTEN"/$rev -a "$(grep "$rev" "$DOTEST"/not-cherry-picks)" = ""
634 # Use -f2 because if rev-list is telling us this commit is
635 # not worthwhile, we don't want to track its multiple heads,
636 # just the history of its first-parent for others that will
637 # be rebasing on top of it
638 git rev-list
--parents -1 $rev | cut
-d' ' -f2 > "$DROPPED"/$rev
639 cat "$TODO" |
grep -v "${rev:0:7}" > "${TODO}2" ; mv "${TODO}2" "$TODO"
644 test -s "$TODO" ||
echo noop
>> "$TODO"
645 cat >> "$TODO" << EOF
647 # Rebase $SHORTUPSTREAM..$SHORTHEAD onto $SHORTONTO
650 # p, pick = use commit
651 # e, edit = use commit, but stop for amending
652 # s, squash = use commit, but meld into previous commit
654 # If you remove a line here THAT COMMIT WILL BE LOST.
655 # However, if you remove everything, the rebase will be aborted.
659 has_action
"$TODO" ||
660 die_abort
"Nothing to do"
662 cp "$TODO" "$TODO".backup
663 git_editor
"$TODO" ||
664 die
"Could not execute editor"
666 has_action
"$TODO" ||
667 die_abort
"Nothing to do"
669 git update-ref ORIG_HEAD
$HEAD
670 output git checkout
$ONTO && do_rest