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
13 USAGE
='(--continue | --abort | --skip | [--preserve-merges] [--verbose]
14 [--onto <branch>] <upstream> [<branch>])'
20 DOTEST
="$GIT_DIR/.dotest-merge"
21 TODO
="$DOTEST"/git-rebase-todo
24 SQUASH_MSG
="$DOTEST"/message-squash
25 REWRITTEN
="$DOTEST"/rewritten
29 test -d "$REWRITTEN" && PRESERVE_MERGES
=t
30 test -f "$DOTEST"/strategy
&& STRATEGY
="$(cat "$DOTEST"/strategy)"
31 test -f "$DOTEST"/verbose
&& VERBOSE
=t
33 GIT_CHERRY_PICK_HELP
=" After resolving the conflicts,
34 mark the corrected paths with 'git add <paths>', and
35 run 'git rebase --continue'"
36 export GIT_CHERRY_PICK_HELP
47 test $status != 0 && printf "%s\n" "$output"
56 require_clean_work_tree
() {
57 # test if working tree is dirty
58 git rev-parse
--verify HEAD
> /dev
/null
&&
59 git update-index
--refresh &&
60 git diff-files
--quiet &&
61 git diff-index
--cached --quiet HEAD
-- ||
62 die
"Working tree is dirty"
65 ORIG_REFLOG_ACTION
="$GIT_REFLOG_ACTION"
67 comment_for_reflog
() {
68 case "$ORIG_REFLOG_ACTION" in
70 GIT_REFLOG_ACTION
="rebase -i ($1)"
71 export GIT_REFLOG_ACTION
77 sed -e 1q
< "$TODO" >> "$DONE"
78 sed -e 1d
< "$TODO" >> "$TODO".new
79 mv -f "$TODO".new
"$TODO"
80 count
=$
(($
(grep -ve '^$' -e '^#' < "$DONE" |
wc -l)))
81 total
=$
(($count+$
(grep -ve '^$' -e '^#' < "$TODO" |
wc -l)))
82 printf "Rebasing (%d/%d)\r" $count $total
83 test -z "$VERBOSE" ||
echo
87 parent_sha1
=$
(git rev-parse
--verify "$1"^
) ||
88 die
"Cannot get patch for $1^"
89 git diff-tree
-p "$parent_sha1"..
"$1" > "$DOTEST"/patch
90 test -f "$DOTEST"/message ||
91 git cat-file commit
"$1" |
sed "1,/^$/d" > "$DOTEST"/message
92 test -f "$DOTEST"/author-script ||
93 get_author_ident_from_commit
"$1" > "$DOTEST"/author-script
108 grep -vqe '^$' -e '^#' "$1"
113 case "$1" in -n) sha1
=$2; no_ff
=t
;; *) sha1
=$1 ;; esac
114 output git rev-parse
--verify $sha1 || die
"Invalid commit name: $sha1"
115 test -d "$REWRITTEN" &&
116 pick_one_preserving_merges
"$@" && return
117 parent_sha1
=$
(git rev-parse
--verify $sha1^
) ||
118 die
"Could not get the parent of $sha1"
119 current_sha1
=$
(git rev-parse
--verify HEAD
)
120 if test "$no_ff$current_sha1" = "$parent_sha1"; then
121 output git
reset --hard $sha1
122 test "a$1" = a-n
&& output git
reset --soft $current_sha1
123 sha1
=$
(git rev-parse
--short $sha1)
124 output warn Fast forward to
$sha1
126 output git cherry-pick
"$@"
130 pick_one_preserving_merges
() {
131 case "$1" in -n) sha1
=$2 ;; *) sha1
=$1 ;; esac
132 sha1
=$
(git rev-parse
$sha1)
134 if test -f "$DOTEST"/current-commit
136 current_commit
=$
(cat "$DOTEST"/current-commit
) &&
137 git rev-parse HEAD
> "$REWRITTEN"/$current_commit &&
138 rm "$DOTEST"/current-commit ||
139 die
"Cannot write current commit's replacement sha1"
142 # rewrite parents; if none were rewritten, we can fast-forward.
146 for p
in $
(git rev-list
--parents -1 $sha1 | cut
-d' ' -f2-)
148 if test -f "$REWRITTEN"/$p
151 new_p
=$
(cat "$REWRITTEN"/$p)
152 test $p != $new_p && fast_forward
=f
153 case "$new_parents" in
155 ;; # do nothing; that parent is already there
157 new_parents
="$new_parents $new_p"
162 case $fast_forward in
164 output warn
"Fast forward to $sha1"
165 test $preserve = f ||
echo $sha1 > "$REWRITTEN"/$sha1
168 test "a$1" = a-n
&& die
"Refusing to squash a merge: $sha1"
170 first_parent
=$
(expr "$new_parents" : ' \([^ ]*\)')
171 # detach HEAD to current parent
172 output git checkout
$first_parent 2> /dev
/null ||
173 die
"Cannot move HEAD to $first_parent"
175 echo $sha1 > "$DOTEST"/current-commit
176 case "$new_parents" in
179 author_script
=$
(get_author_ident_from_commit
$sha1)
180 eval "$author_script"
181 msg
="$(git cat-file commit $sha1 | sed -e '1,/^$/d')"
182 # No point in merging the first parent, that's HEAD
183 new_parents
=${new_parents# $first_parent}
184 if ! GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
185 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
186 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
187 output git merge
$STRATEGY -m "$msg" \
191 printf "%s\n" "$msg" > "$GIT_DIR"/MERGE_MSG
192 die Error redoing merge
$sha1
196 output git cherry-pick
"$@" ||
197 die_with_patch
$sha1 "Could not pick $sha1"
206 *1[0-9]|
*[04-9]) echo "$1"th
;;
213 make_squash_message
() {
214 if test -f "$SQUASH_MSG"; then
215 COUNT
=$
(($
(sed -n "s/^# This is [^0-9]*\([1-9][0-9]*\).*/\1/p" \
216 < "$SQUASH_MSG" |
tail -n 1)+1))
217 echo "# This is a combination of $COUNT commits."
218 sed -n "2,\$p" < "$SQUASH_MSG"
221 echo "# This is a combination of two commits."
222 echo "# The first commit's message is:"
224 git cat-file commit HEAD |
sed -e '1,/^$/d'
227 echo "# This is the $(nth_string $COUNT) commit message:"
229 git cat-file commit
$1 |
sed -e '1,/^$/d'
232 peek_next_command
() {
233 sed -n "1s/ .*$//p" < "$TODO"
237 rm -f "$DOTEST"/message
"$DOTEST"/author-script \
238 "$DOTEST"/amend ||
exit
239 read command sha1 rest
< "$TODO"
245 comment_for_reflog pick
249 die_with_patch
$sha1 "Could not apply $sha1... $rest"
252 comment_for_reflog edit
256 die_with_patch
$sha1 "Could not apply $sha1... $rest"
260 warn
"You can amend the commit now, with"
262 warn
" git commit --amend"
267 comment_for_reflog squash
269 has_action
"$DONE" ||
270 die
"Cannot 'squash' without a previous commit"
273 make_squash_message
$sha1 > "$MSG"
274 case "$(peek_next_command)" in
278 cp "$MSG" "$SQUASH_MSG"
283 rm -f "$SQUASH_MSG" ||
exit
288 author_script
=$
(get_author_ident_from_commit HEAD
)
289 output git
reset --soft HEAD^
290 pick_one
-n $sha1 || failed
=t
291 echo "$author_script" > "$DOTEST"/author-script
294 # This is like --amend, but with a different message
295 eval "$author_script"
296 GIT_AUTHOR_NAME
="$GIT_AUTHOR_NAME" \
297 GIT_AUTHOR_EMAIL
="$GIT_AUTHOR_EMAIL" \
298 GIT_AUTHOR_DATE
="$GIT_AUTHOR_DATE" \
299 $USE_OUTPUT git commit
-F "$MSG" $EDIT_COMMIT
302 cp "$MSG" "$GIT_DIR"/MERGE_MSG
304 warn
"Could not apply $sha1... $rest"
305 die_with_patch
$sha1 ""
310 warn
"Unknown command: $command $sha1 $rest"
311 die_with_patch
$sha1 "Please fix this in the file $TODO."
314 test -s "$TODO" && return
316 comment_for_reflog finish
&&
317 HEADNAME
=$
(cat "$DOTEST"/head-name
) &&
318 OLDHEAD
=$
(cat "$DOTEST"/head) &&
319 SHORTONTO
=$
(git rev-parse
--short $
(cat "$DOTEST"/onto
)) &&
320 if test -d "$REWRITTEN"
322 test -f "$DOTEST"/current-commit
&&
323 current_commit
=$
(cat "$DOTEST"/current-commit
) &&
324 git rev-parse HEAD
> "$REWRITTEN"/$current_commit
325 NEWHEAD
=$
(cat "$REWRITTEN"/$OLDHEAD)
327 NEWHEAD
=$
(git rev-parse HEAD
)
331 message
="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO)" &&
332 git update-ref
-m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
333 git symbolic-ref HEAD
$HEADNAME
336 test ! -f "$DOTEST"/verbose ||
337 git diff-tree
--stat $
(cat "$DOTEST"/head)..HEAD
341 warn
"Successfully rebased and updated $HEADNAME."
357 comment_for_reflog
continue
359 test -d "$DOTEST" || die
"No interactive rebase running"
361 # commit if necessary
362 git rev-parse
--verify HEAD
> /dev
/null
&&
363 git update-index
--refresh &&
364 git diff-files
--quiet &&
365 ! git diff-index
--cached --quiet HEAD
-- &&
366 .
"$DOTEST"/author-script
&& {
367 test ! -f "$DOTEST"/amend || git
reset --soft HEAD^
369 export GIT_AUTHOR_NAME GIT_AUTHOR_NAME GIT_AUTHOR_DATE
&&
370 git commit
-F "$DOTEST"/message
-e
372 require_clean_work_tree
376 comment_for_reflog abort
379 test -d "$DOTEST" || die
"No interactive rebase running"
381 HEADNAME
=$
(cat "$DOTEST"/head-name
)
382 HEAD
=$
(cat "$DOTEST"/head)
385 git symbolic-ref HEAD
$HEADNAME
388 output git
reset --hard $HEAD &&
393 comment_for_reflog skip
396 test -d "$DOTEST" || die
"No interactive rebase running"
398 output git
reset --hard && do_rest
403 STRATEGY
="-s "$
(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
412 # we use merge anyway
415 die
"Interactive rebase uses merge, so $1 does not make sense"
420 -p|
--preserve-merges)
431 die
"Interactive rebase already started"
433 git var GIT_COMMITTER_IDENT
>/dev
/null ||
434 die
"You need to set your committer info first"
436 comment_for_reflog start
441 ONTO
=$
(git rev-parse
--verify "$2") ||
442 die
"Does not point to a valid commit: $2"
447 require_clean_work_tree
451 output git show-ref
--verify --quiet "refs/heads/$2" ||
452 die
"Invalid branchname: $2"
453 output git checkout
"$2" ||
454 die
"Could not checkout $2"
457 HEAD
=$
(git rev-parse
--verify HEAD
) || die
"No HEAD?"
458 UPSTREAM
=$
(git rev-parse
--verify "$1") || die
"Invalid base"
460 mkdir
"$DOTEST" || die
"Could not create temporary $DOTEST"
462 test -z "$ONTO" && ONTO
=$UPSTREAM
464 : > "$DOTEST"/interactive || die
"Could not mark as interactive"
465 git symbolic-ref HEAD
> "$DOTEST"/head-name
2> /dev
/null ||
466 echo "detached HEAD" > "$DOTEST"/head-name
468 echo $HEAD > "$DOTEST"/head
469 echo $UPSTREAM > "$DOTEST"/upstream
470 echo $ONTO > "$DOTEST"/onto
471 test -z "$STRATEGY" ||
echo "$STRATEGY" > "$DOTEST"/strategy
472 test t
= "$VERBOSE" && : > "$DOTEST"/verbose
473 if test t
= "$PRESERVE_MERGES"
475 # $REWRITTEN contains files for each commit that is
476 # reachable by at least one merge base of $HEAD and
477 # $UPSTREAM. They are not necessarily rewritten, but
478 # their children might be.
479 # This ensures that commits on merged, but otherwise
480 # unrelated side branches are left alone. (Think "X"
481 # in the man page's example.)
482 mkdir
"$REWRITTEN" &&
483 for c
in $
(git merge-base
--all $HEAD $UPSTREAM)
485 echo $ONTO > "$REWRITTEN"/$c ||
486 die
"Could not init rewritten commits"
490 MERGES_OPTION
=--no-merges
493 SHORTUPSTREAM
=$
(git rev-parse
--short $UPSTREAM)
494 SHORTHEAD
=$
(git rev-parse
--short $HEAD)
495 SHORTONTO
=$
(git rev-parse
--short $ONTO)
496 git rev-list
$MERGES_OPTION --pretty=oneline
--abbrev-commit \
497 --abbrev=7 --reverse --left-right --cherry-pick \
498 $UPSTREAM...
$HEAD | \
499 sed -n "s/^>/pick /p" > "$TODO"
500 cat >> "$TODO" << EOF
502 # Rebase $SHORTUPSTREAM..$SHORTHEAD onto $SHORTONTO
506 # edit = use commit, but stop for amending
507 # squash = use commit, but meld into previous commit
509 # If you remove a line here THAT COMMIT WILL BE LOST.
510 # However, if you remove everything, the rebase will be aborted.
514 has_action
"$TODO" ||
515 die_abort
"Nothing to do"
517 cp "$TODO" "$TODO".backup
518 git_editor
"$TODO" ||
519 die
"Could not execute editor"
521 has_action
"$TODO" ||
522 die_abort
"Nothing to do"
524 output git checkout
$ONTO && do_rest