rebase-i-p: fix 'no squashing merges' tripping up non-merges
[git/gitweb.git] / git-rebase--interactive.sh
blob274251f697afc256e249d46376e899ec91011d85
1 #!/bin/sh
3 # Copyright (c) 2006 Johannes E. Schindelin
5 # SHORT DESCRIPTION
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 OPTIONS_KEEPDASHDASH=
14 OPTIONS_SPEC="\
15 git-rebase [-i] [options] [--] <upstream> [<branch>]
16 git-rebase [-i] (--continue | --abort | --skip)
18 Available options are
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)
25 Actions:
26 continue continue rebasing process
27 abort abort rebasing process and restore original branch
28 skip skip current patch and continue rebasing process
31 . git-sh-setup
32 require_work_tree
34 DOTEST="$GIT_DIR/rebase-merge"
35 TODO="$DOTEST"/git-rebase-todo
36 DONE="$DOTEST"/done
37 MSG="$DOTEST"/message
38 SQUASH_MSG="$DOTEST"/message-squash
39 REWRITTEN="$DOTEST"/rewritten
40 DROPPED="$DOTEST"/dropped
41 PRESERVE_MERGES=
42 STRATEGY=
43 ONTO=
44 VERBOSE=
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
51 warn () {
52 echo "$*" >&2
55 output () {
56 case "$VERBOSE" in
57 '')
58 output=$("$@" 2>&1 )
59 status=$?
60 test $status != 0 && printf "%s\n" "$output"
61 return $status
64 "$@"
66 esac
69 run_pre_rebase_hook () {
70 if test -x "$GIT_DIR/hooks/pre-rebase"
71 then
72 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
73 echo >&2 "The pre-rebase hook refused to rebase."
74 exit 1
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
92 ''|rebase*)
93 GIT_REFLOG_ACTION="rebase -i ($1)"
94 export GIT_REFLOG_ACTION
96 esac
99 last_count=
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"
107 then
108 last_count=$count
109 printf "Rebasing (%d/%d)\r" $count $total
110 test -z "$VERBOSE" || echo
114 make_patch () {
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
124 die_with_patch () {
125 make_patch "$1"
126 git rerere
127 die "$2"
130 die_abort () {
131 rm -rf "$DOTEST"
132 die "$1"
135 has_action () {
136 grep '^[^#]' "$1" >/dev/null
139 pick_one () {
140 no_ff=
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
153 else
154 output git cherry-pick "$@"
158 pick_one_preserving_merges () {
159 fast_forward=t
160 case "$1" in
162 fast_forward=f
163 sha1=$2
166 sha1=$1
168 esac
169 sha1=$(git rev-parse $sha1)
171 if test -f "$DOTEST"/current-commit
172 then
173 if [ "$fast_forward" == "t" ]
174 then
175 cat "$DOTEST"/current-commit | while read current_commit
177 git rev-parse HEAD > "$REWRITTEN"/$current_commit
178 done
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.
187 new_parents=
188 pend=" $(git rev-list --parents -1 $sha1 | cut -d' ' -f2-)"
189 while [ "$pend" != "" ]
191 p=$(expr "$pend" : ' \([^ ]*\)')
192 pend="${pend# $p}"
194 if test -f "$REWRITTEN"/$p
195 then
196 new_p=$(cat "$REWRITTEN"/$p)
197 test $p != $new_p && fast_forward=f
198 case "$new_parents" in
199 *$new_p*)
200 ;; # do nothing; that parent is already there
202 new_parents="$new_parents $new_p"
204 esac
205 else
206 if test -f "$DROPPED"/$p
207 then
208 fast_forward=f
209 pend=" $(cat "$DROPPED"/$p)$pend"
210 else
211 new_parents="$new_parents $p"
214 done
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" : ' \([^ ]*\)')
224 if [ "$1" != "-n" ]
225 then
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
232 ' '*' '*)
233 test "a$1" = a-n && die "Refusing to squash a merge: $sha1"
235 # redo merge
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" \
245 $new_parents
246 then
247 git rerere
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"
256 esac
258 esac
261 nth_string () {
262 case "$1" in
263 *1[0-9]|*[04-9]) echo "$1"th;;
264 *1) echo "$1"st;;
265 *2) echo "$1"nd;;
266 *3) echo "$1"rd;;
267 esac
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,/^./{
276 /^$/d
277 }' <"$SQUASH_MSG"
278 else
279 COUNT=2
280 echo "# This is a combination of two commits."
281 echo "# The first commit's message is:"
282 echo
283 git cat-file commit HEAD | sed -e '1,/^$/d'
285 echo
286 echo "# This is the $(nth_string $COUNT) commit message:"
287 echo
288 git cat-file commit $1 | sed -e '1,/^$/d'
291 peek_next_command () {
292 sed -n "1s/ .*$//p" < "$TODO"
295 do_next () {
296 rm -f "$DOTEST"/message "$DOTEST"/author-script \
297 "$DOTEST"/amend || exit
298 read command sha1 rest < "$TODO"
299 case "$command" in
300 '#'*|''|noop)
301 mark_action_done
303 pick|p)
304 comment_for_reflog pick
306 mark_action_done
307 pick_one $sha1 ||
308 die_with_patch $sha1 "Could not apply $sha1... $rest"
310 edit|e)
311 comment_for_reflog edit
313 mark_action_done
314 pick_one $sha1 ||
315 die_with_patch $sha1 "Could not apply $sha1... $rest"
316 make_patch $sha1
317 git rev-parse --verify HEAD > "$DOTEST"/amend
318 warn "Stopped at $sha1... $rest"
319 warn "You can amend the commit now, with"
320 warn
321 warn " git commit --amend"
322 warn
323 warn "Once you are satisfied with your changes, run"
324 warn
325 warn " git rebase --continue"
326 warn
327 exit 0
329 squash|s)
330 comment_for_reflog squash
332 has_action "$DONE" ||
333 die "Cannot 'squash' without a previous commit"
335 mark_action_done
336 make_squash_message $sha1 > "$MSG"
337 failed=f
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
342 squash|s)
343 EDIT_COMMIT=
344 USE_OUTPUT=output
345 MSG_OPT=-F
346 MSG_FILE="$MSG"
347 cp "$MSG" "$SQUASH_MSG"
350 EDIT_COMMIT=-e
351 USE_OUTPUT=
352 MSG_OPT=
353 MSG_FILE=
354 rm -f "$SQUASH_MSG" || exit
355 cp "$MSG" "$GIT_DIR"/SQUASH_MSG
356 rm -f "$GIT_DIR"/MERGE_MSG || exit
358 esac
359 echo "$author_script" > "$DOTEST"/author-script
360 if test $failed = f
361 then
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
369 if test $failed = t
370 then
371 cp "$MSG" "$GIT_DIR"/MERGE_MSG
372 warn
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."
381 esac
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) &&
389 case $HEADNAME in
390 refs/*)
391 message="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO)" &&
392 git update-ref -m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
393 git symbolic-ref HEAD $HEADNAME
395 esac && {
396 test ! -f "$DOTEST"/verbose ||
397 git diff-tree --stat $(cat "$DOTEST"/head)..HEAD
398 } &&
399 rm -rf "$DOTEST" &&
400 git gc --auto &&
401 warn "Successfully rebased and updated $HEADNAME."
403 exit
406 do_rest () {
407 while :
409 do_next
410 done
413 # check if no other options are set
414 is_standalone () {
415 test $# -eq 2 -a "$2" = '--' &&
416 test -z "$ONTO" &&
417 test -z "$PRESERVE_MERGES" &&
418 test -z "$STRATEGY" &&
419 test -z "$VERBOSE"
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
428 while test $# != 0
430 case "$1" in
431 --continue)
432 is_standalone "$@" || usage
433 get_saved_options
434 comment_for_reflog continue
436 test -d "$DOTEST" || die "No interactive rebase running"
438 # Sanity check
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 --
447 then
448 : Nothing to commit -- skip this
449 else
450 . "$DOTEST"/author-script ||
451 die "Cannot find the author identity"
452 amend=
453 if test -f "$DOTEST"/amend
454 then
455 amend=$(git rev-parse --verify HEAD)
456 test "$amend" = $(cat "$DOTEST"/amend) ||
457 die "\
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
471 do_rest
473 --abort)
474 is_standalone "$@" || usage
475 get_saved_options
476 comment_for_reflog abort
478 git rerere clear
479 test -d "$DOTEST" || die "No interactive rebase running"
481 HEADNAME=$(cat "$DOTEST"/head-name)
482 HEAD=$(cat "$DOTEST"/head)
483 case $HEADNAME in
484 refs/*)
485 git symbolic-ref HEAD $HEADNAME
487 esac &&
488 output git reset --hard $HEAD &&
489 rm -rf "$DOTEST"
490 exit
492 --skip)
493 is_standalone "$@" || usage
494 get_saved_options
495 comment_for_reflog skip
497 git rerere clear
498 test -d "$DOTEST" || die "No interactive rebase running"
500 output git reset --hard && do_rest
503 case "$#,$1" in
504 *,*=*)
505 STRATEGY="-s "$(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
506 1,*)
507 usage ;;
509 STRATEGY="-s $2"
510 shift ;;
511 esac
514 # we use merge anyway
517 VERBOSE=t
520 PRESERVE_MERGES=t
523 # yeah, we know
525 --onto)
526 shift
527 ONTO=$(git rev-parse --verify "$1") ||
528 die "Does not point to a valid commit: $1"
531 shift
532 run_pre_rebase_hook ${1+"$@"}
533 test $# -eq 1 -o $# -eq 2 || usage
534 test -d "$DOTEST" &&
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
547 if test ! -z "$2"
548 then
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"
568 then
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"
581 done
582 MERGES_OPTION=
583 else
584 MERGES_OPTION=--no-merges
587 SHORTUPSTREAM=$(git rev-parse --short $UPSTREAM)
588 SHORTHEAD=$(git rev-parse --short $HEAD)
589 SHORTONTO=$(git rev-parse --short $ONTO)
590 git rev-list $MERGES_OPTION --pretty=oneline --abbrev-commit \
591 --abbrev=7 --reverse --left-right --cherry-pick \
592 $UPSTREAM...$HEAD | \
593 sed -n "s/^>/pick /p" > "$TODO"
594 test -s "$TODO" || echo noop >> "$TODO"
595 cat >> "$TODO" << EOF
597 # Rebase $SHORTUPSTREAM..$SHORTHEAD onto $SHORTONTO
599 # Commands:
600 # p, pick = use commit
601 # e, edit = use commit, but stop for amending
602 # s, squash = use commit, but meld into previous commit
604 # If you remove a line here THAT COMMIT WILL BE LOST.
605 # However, if you remove everything, the rebase will be aborted.
609 # Watch for commits that been dropped by --cherry-pick
610 if test t = "$PRESERVE_MERGES"
611 then
612 mkdir "$DROPPED"
613 # drop the --cherry-pick parameter this time
614 git rev-list $MERGES_OPTION --abbrev-commit \
615 --abbrev=7 $UPSTREAM...$HEAD --left-right | \
616 sed -n "s/^>//p" | while read rev
618 grep --quiet "$rev" "$TODO"
619 if [ $? -ne 0 ]
620 then
621 # Use -f2 because if rev-list is telling this commit is not
622 # worthwhile, we don't want to track its multiple heads,
623 # just the history of its first-parent for others that will
624 # be rebasing on top of us
625 full=$(git rev-parse $rev)
626 git rev-list --parents -1 $rev | cut -d' ' -f2 > "$DROPPED"/$full
628 done
631 has_action "$TODO" ||
632 die_abort "Nothing to do"
634 cp "$TODO" "$TODO".backup
635 git_editor "$TODO" ||
636 die "Could not execute editor"
638 has_action "$TODO" ||
639 die_abort "Nothing to do"
641 git update-ref ORIG_HEAD $HEAD
642 output git checkout $ONTO && do_rest
644 esac
645 shift
646 done