]> git.ipfire.org Git - thirdparty/git.git/blame - git-rebase--interactive.sh
test-lib: user-friendly alternatives to test [-d|-f|-e]
[thirdparty/git.git] / git-rebase--interactive.sh
CommitLineData
1b1dce4b
JS
1#!/bin/sh
2#
3# Copyright (c) 2006 Johannes E. Schindelin
4
5# SHORT DESCRIPTION
6#
7# This script makes it easy to fix up commits in the middle of a series,
8# and rearrange commits.
9#
10# The original idea comes from Eric W. Biederman, in
11# http://article.gmane.org/gmane.comp.version-control.git/22407
12
7970aaf0
SB
13OPTIONS_KEEPDASHDASH=
14OPTIONS_SPEC="\
15git-rebase [-i] [options] [--] <upstream> [<branch>]
16git-rebase [-i] (--continue | --abort | --skip)
17--
18 Available options are
19v,verbose display a diffstat of what changed upstream
20onto= rebase onto given branch instead of upstream
21p,preserve-merges try to recreate merges instead of ignoring them
22s,strategy= use the given merge strategy
b4995494 23no-ff cherry-pick all commits, even if unchanged
7970aaf0
SB
24m,merge always used (no-op)
25i,interactive always used (no-op)
26 Actions:
27continue continue rebasing process
28abort abort rebasing process and restore original branch
29skip skip current patch and continue rebasing process
c4427656 30no-verify override pre-rebase hook from stopping the operation
d911d146 31root rebase all reachable commmits up to the root(s)
f59baa50 32autosquash move commits that begin with squash!/fixup! under -i
7970aaf0 33"
1b1dce4b
JS
34
35. git-sh-setup
36require_work_tree
37
28ed6e7b 38DOTEST="$GIT_DIR/rebase-merge"
80883bb3
MH
39
40# The file containing rebase commands, comments, and empty lines.
41# This file is created by "git rebase -i" then edited by the user. As
42# the lines are processed, they are removed from the front of this
43# file and written to the tail of $DONE.
c22486c9 44TODO="$DOTEST"/git-rebase-todo
80883bb3
MH
45
46# The rebase command lines that have already been processed. A line
47# is moved here when it is first handled, before any associated user
48# actions.
1b1dce4b 49DONE="$DOTEST"/done
80883bb3
MH
50
51# The commit message that is planned to be used for any changes that
52# need to be committed following a user interaction.
6368f3f8 53MSG="$DOTEST"/message
80883bb3
MH
54
55# The file into which is accumulated the suggested commit message for
56# squash/fixup commands. When the first of a series of squash/fixups
57# is seen, the file is created and the commit message from the
58# previous commit and from the first squash/fixup commit are written
59# to it. The commit message for each subsequent squash/fixup commit
60# is appended to the file as it is processed.
61#
62# The first line of the file is of the form
63# # This is a combination of $COUNT commits.
64# where $COUNT is the number of commits whose messages have been
65# written to the file so far (including the initial "pick" commit).
66# Each time that a commit message is processed, this line is read and
67# updated. It is deleted just before the combined commit is made.
6368f3f8 68SQUASH_MSG="$DOTEST"/message-squash
80883bb3 69
a25eb139
MH
70# If the current series of squash/fixups has not yet included a squash
71# command, then this file exists and holds the commit message of the
72# original "pick" commit. (If the series ends without a "squash"
73# command, then this can be used as the commit message of the combined
74# commit without opening the editor.)
75FIXUP_MSG="$DOTEST"/message-fixup
76
80883bb3
MH
77# $REWRITTEN is the name of a directory containing files for each
78# commit that is reachable by at least one merge base of $HEAD and
79# $UPSTREAM. They are not necessarily rewritten, but their children
80# might be. This ensures that commits on merged, but otherwise
81# unrelated side branches are left alone. (Think "X" in the man page's
82# example.)
f09c9b8c 83REWRITTEN="$DOTEST"/rewritten
80883bb3 84
faae853c 85DROPPED="$DOTEST"/dropped
0aac0de4
MH
86
87# A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
88# GIT_AUTHOR_DATE that will be used for the commit that is currently
89# being rebased.
90AUTHOR_SCRIPT="$DOTEST"/author-script
91
a4049ae7
MH
92# When an "edit" rebase command is being processed, the SHA1 of the
93# commit to be edited is recorded in this file. When "git rebase
94# --continue" is executed, if there are any staged changes then they
95# will be amended to the HEAD commit, but only provided the HEAD
96# commit is still the commit to be edited. When any other rebase
97# command is processed, this file is deleted.
98AMEND="$DOTEST"/amend
99
b079feed
TR
100# For the post-rewrite hook, we make a list of rewritten commits and
101# their new sha1s. The rewritten-pending list keeps the sha1s of
102# commits that have been processed, but not committed yet,
103# e.g. because they are waiting for a 'squash' command.
104REWRITTEN_LIST="$DOTEST"/rewritten-list
105REWRITTEN_PENDING="$DOTEST"/rewritten-pending
106
f09c9b8c 107PRESERVE_MERGES=
1b1dce4b 108STRATEGY=
7970aaf0 109ONTO=
1b1dce4b 110VERBOSE=
c4427656 111OK_TO_SKIP_PRE_REBASE=
d911d146 112REBASE_ROOT=
f59baa50 113AUTOSQUASH=
b4995494 114NEVER_FF=
1b1dce4b 115
804c7174
WC
116GIT_CHERRY_PICK_HELP=" After resolving the conflicts,
117mark the corrected paths with 'git add <paths>', and
118run 'git rebase --continue'"
119export GIT_CHERRY_PICK_HELP
120
1b1dce4b
JS
121warn () {
122 echo "$*" >&2
123}
124
dfa49f33
JS
125output () {
126 case "$VERBOSE" in
127 '')
5166810b 128 output=$("$@" 2>&1 )
dfa49f33 129 status=$?
5166810b 130 test $status != 0 && printf "%s\n" "$output"
dfa49f33 131 return $status
376ccb8c 132 ;;
dfa49f33
JS
133 *)
134 "$@"
376ccb8c 135 ;;
dfa49f33
JS
136 esac
137}
138
ee0a4afb
MH
139# Output the commit message for the specified commit.
140commit_message () {
141 git cat-file commit "$1" | sed "1,/^$/d"
142}
143
d70b4a8f 144run_pre_rebase_hook () {
c4427656
NS
145 if test -z "$OK_TO_SKIP_PRE_REBASE" &&
146 test -x "$GIT_DIR/hooks/pre-rebase"
d70b4a8f
NS
147 then
148 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
149 echo >&2 "The pre-rebase hook refused to rebase."
150 exit 1
151 }
152 fi
153}
154
1b1dce4b
JS
155require_clean_work_tree () {
156 # test if working tree is dirty
157 git rev-parse --verify HEAD > /dev/null &&
6848d58c
JS
158 git update-index --ignore-submodules --refresh &&
159 git diff-files --quiet --ignore-submodules &&
160 git diff-index --cached --quiet HEAD --ignore-submodules -- ||
1b1dce4b
JS
161 die "Working tree is dirty"
162}
163
164ORIG_REFLOG_ACTION="$GIT_REFLOG_ACTION"
165
166comment_for_reflog () {
167 case "$ORIG_REFLOG_ACTION" in
168 ''|rebase*)
169 GIT_REFLOG_ACTION="rebase -i ($1)"
170 export GIT_REFLOG_ACTION
376ccb8c 171 ;;
1b1dce4b
JS
172 esac
173}
174
4e673877 175last_count=
1b1dce4b
JS
176mark_action_done () {
177 sed -e 1q < "$TODO" >> "$DONE"
178 sed -e 1d < "$TODO" >> "$TODO".new
179 mv -f "$TODO".new "$TODO"
e1622bfc
JH
180 count=$(sane_grep -c '^[^#]' < "$DONE")
181 total=$(($count+$(sane_grep -c '^[^#]' < "$TODO")))
4e673877
JH
182 if test "$last_count" != "$count"
183 then
184 last_count=$count
185 printf "Rebasing (%d/%d)\r" $count $total
186 test -z "$VERBOSE" || echo
187 fi
1b1dce4b
JS
188}
189
190make_patch () {
4fb1a19d
JS
191 sha1_and_parents="$(git rev-list --parents -1 "$1")"
192 case "$sha1_and_parents" in
193 ?*' '?*' '?*)
194 git diff --cc $sha1_and_parents
195 ;;
196 ?*' '?*)
197 git diff-tree -p "$1^!"
198 ;;
199 *)
200 echo "Root commit"
201 ;;
202 esac > "$DOTEST"/patch
bdb011ad 203 test -f "$MSG" ||
ee0a4afb 204 commit_message "$1" > "$MSG"
0aac0de4
MH
205 test -f "$AUTHOR_SCRIPT" ||
206 get_author_ident_from_commit "$1" > "$AUTHOR_SCRIPT"
1b1dce4b
JS
207}
208
209die_with_patch () {
b079feed 210 echo "$1" > "$DOTEST"/stopped-sha
1b1dce4b 211 make_patch "$1"
ecfe72ff 212 git rerere
1b1dce4b
JS
213 die "$2"
214}
215
c54b7817
JS
216die_abort () {
217 rm -rf "$DOTEST"
218 die "$1"
219}
220
376ccb8c 221has_action () {
e1622bfc 222 sane_grep '^[^#]' "$1" >/dev/null
376ccb8c
JS
223}
224
7756ecff
MH
225# Run command with GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
226# GIT_AUTHOR_DATE exported from the current environment.
227do_with_author () {
76c9c0db
JH
228 (
229 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
230 "$@"
231 )
7756ecff
MH
232}
233
1b1dce4b 234pick_one () {
8e75abfd
CC
235 ff=--ff
236 case "$1" in -n) sha1=$2; ff= ;; *) sha1=$1 ;; esac
9234b003 237 case "$NEVER_FF" in '') ;; ?*) ff= ;; esac
dfa49f33 238 output git rev-parse --verify $sha1 || die "Invalid commit name: $sha1"
f09c9b8c
JS
239 test -d "$REWRITTEN" &&
240 pick_one_preserving_merges "$@" && return
699f13ca 241 if test -n "$REBASE_ROOT"
d911d146
TR
242 then
243 output git cherry-pick "$@"
244 return
245 fi
8e75abfd 246 output git cherry-pick $ff "$@"
1b1dce4b
JS
247}
248
f09c9b8c 249pick_one_preserving_merges () {
71d9451e
TR
250 fast_forward=t
251 case "$1" in
252 -n)
253 fast_forward=f
254 sha1=$2
255 ;;
256 *)
257 sha1=$1
258 ;;
259 esac
f09c9b8c
JS
260 sha1=$(git rev-parse $sha1)
261
3b38ec16 262 if test -f "$DOTEST"/current-commit
f09c9b8c 263 then
4c1360f4 264 if test "$fast_forward" = t
bb645071 265 then
41f556b9 266 while read current_commit
bb645071
SH
267 do
268 git rev-parse HEAD > "$REWRITTEN"/$current_commit
41f556b9 269 done <"$DOTEST"/current-commit
bb645071
SH
270 rm "$DOTEST"/current-commit ||
271 die "Cannot write current commit's replacement sha1"
272 fi
f09c9b8c
JS
273 fi
274
bb645071 275 echo $sha1 >> "$DOTEST"/current-commit
a96dc01e 276
f09c9b8c 277 # rewrite parents; if none were rewritten, we can fast-forward.
f09c9b8c 278 new_parents=
d911d146
TR
279 pend=" $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)"
280 if test "$pend" = " "
281 then
282 pend=" root"
283 fi
faae853c 284 while [ "$pend" != "" ]
f09c9b8c 285 do
faae853c
SH
286 p=$(expr "$pend" : ' \([^ ]*\)')
287 pend="${pend# $p}"
288
3b38ec16 289 if test -f "$REWRITTEN"/$p
f09c9b8c 290 then
f09c9b8c 291 new_p=$(cat "$REWRITTEN"/$p)
80fe82e4
SH
292
293 # If the todo reordered commits, and our parent is marked for
294 # rewriting, but hasn't been gotten to yet, assume the user meant to
295 # drop it on top of the current HEAD
296 if test -z "$new_p"
297 then
298 new_p=$(git rev-parse HEAD)
299 fi
300
f09c9b8c
JS
301 test $p != $new_p && fast_forward=f
302 case "$new_parents" in
303 *$new_p*)
304 ;; # do nothing; that parent is already there
305 *)
306 new_parents="$new_parents $new_p"
376ccb8c 307 ;;
f09c9b8c 308 esac
1c5fa0a1 309 else
faae853c
SH
310 if test -f "$DROPPED"/$p
311 then
312 fast_forward=f
d911d146
TR
313 replacement="$(cat "$DROPPED"/$p)"
314 test -z "$replacement" && replacement=root
315 pend=" $replacement$pend"
faae853c
SH
316 else
317 new_parents="$new_parents $p"
318 fi
f09c9b8c
JS
319 fi
320 done
321 case $fast_forward in
322 t)
a75d7b54 323 output warn "Fast-forward to $sha1"
71d9451e 324 output git reset --hard $sha1 ||
a75d7b54 325 die "Cannot fast-forward to $sha1"
f09c9b8c
JS
326 ;;
327 f)
376ccb8c 328 first_parent=$(expr "$new_parents" : ' \([^ ]*\)')
a4f25e36
SH
329
330 if [ "$1" != "-n" ]
331 then
332 # detach HEAD to current parent
333 output git checkout $first_parent 2> /dev/null ||
334 die "Cannot move HEAD to $first_parent"
335 fi
f09c9b8c 336
f09c9b8c 337 case "$new_parents" in
376ccb8c 338 ' '*' '*)
a4f25e36
SH
339 test "a$1" = a-n && die "Refusing to squash a merge: $sha1"
340
f09c9b8c
JS
341 # redo merge
342 author_script=$(get_author_ident_from_commit $sha1)
343 eval "$author_script"
ee0a4afb 344 msg="$(commit_message $sha1)"
f91333d6
BS
345 # No point in merging the first parent, that's HEAD
346 new_parents=${new_parents# $first_parent}
7756ecff
MH
347 if ! do_with_author output \
348 git merge $STRATEGY -m "$msg" $new_parents
f09c9b8c 349 then
376ccb8c 350 printf "%s\n" "$msg" > "$GIT_DIR"/MERGE_MSG
f5b49ea6 351 die_with_patch $sha1 "Error redoing merge $sha1"
f09c9b8c 352 fi
b079feed 353 echo "$sha1 $(git rev-parse HEAD^0)" >> "$REWRITTEN_LIST"
f09c9b8c
JS
354 ;;
355 *)
2a9c53e0 356 output git cherry-pick "$@" ||
f09c9b8c 357 die_with_patch $sha1 "Could not pick $sha1"
376ccb8c 358 ;;
f09c9b8c 359 esac
376ccb8c 360 ;;
f09c9b8c
JS
361 esac
362}
363
6368f3f8
JS
364nth_string () {
365 case "$1" in
366 *1[0-9]|*[04-9]) echo "$1"th;;
367 *1) echo "$1"st;;
368 *2) echo "$1"nd;;
369 *3) echo "$1"rd;;
370 esac
371}
372
a25eb139 373update_squash_messages () {
3b38ec16 374 if test -f "$SQUASH_MSG"; then
bde1a686 375 mv "$SQUASH_MSG" "$SQUASH_MSG".bak || exit
f99e269c
MH
376 COUNT=$(($(sed -n \
377 -e "1s/^# This is a combination of \(.*\) commits\./\1/p" \
bde1a686
MH
378 -e "q" < "$SQUASH_MSG".bak)+1))
379 {
380 echo "# This is a combination of $COUNT commits."
381 sed -e 1d -e '2,/^./{
382 /^$/d
383 }' <"$SQUASH_MSG".bak
3fa7c3da 384 } >"$SQUASH_MSG"
6368f3f8 385 else
a25eb139 386 commit_message HEAD > "$FIXUP_MSG" || die "Cannot write $FIXUP_MSG"
6368f3f8 387 COUNT=2
bde1a686
MH
388 {
389 echo "# This is a combination of 2 commits."
390 echo "# The first commit's message is:"
391 echo
a25eb139 392 cat "$FIXUP_MSG"
3fa7c3da 393 } >"$SQUASH_MSG"
6368f3f8 394 fi
0205e72f
MH
395 case $1 in
396 squash)
a25eb139 397 rm -f "$FIXUP_MSG"
0205e72f
MH
398 echo
399 echo "# This is the $(nth_string $COUNT) commit message:"
400 echo
ee0a4afb 401 commit_message $2
0205e72f
MH
402 ;;
403 fixup)
404 echo
405 echo "# The $(nth_string $COUNT) commit message will be skipped:"
406 echo
ee0a4afb 407 commit_message $2 | sed -e 's/^/# /'
0205e72f 408 ;;
3fa7c3da 409 esac >>"$SQUASH_MSG"
6368f3f8
JS
410}
411
412peek_next_command () {
9524cf29 413 sed -n -e "/^#/d" -e '/^$/d' -e "s/ .*//p" -e "q" < "$TODO"
6368f3f8
JS
414}
415
6bdcd0d2
MH
416# A squash/fixup has failed. Prepare the long version of the squash
417# commit message, then die_with_patch. This code path requires the
418# user to edit the combined commit message for all commits that have
419# been squashed/fixedup so far. So also erase the old squash
420# messages, effectively causing the combined commit to be used as the
421# new basis for any further squash/fixups. Args: sha1 rest
422die_failed_squash() {
423 mv "$SQUASH_MSG" "$MSG" || exit
424 rm -f "$FIXUP_MSG"
425 cp "$MSG" "$GIT_DIR"/MERGE_MSG || exit
426 warn
427 warn "Could not apply $1... $2"
428 die_with_patch $1 ""
429}
430
b079feed
TR
431flush_rewritten_pending() {
432 test -s "$REWRITTEN_PENDING" || return
433 newsha1="$(git rev-parse HEAD^0)"
434 sed "s/$/ $newsha1/" < "$REWRITTEN_PENDING" >> "$REWRITTEN_LIST"
435 rm -f "$REWRITTEN_PENDING"
436}
437
438record_in_rewritten() {
439 oldsha1="$(git rev-parse $1)"
440 echo "$oldsha1" >> "$REWRITTEN_PENDING"
441
442 case "$(peek_next_command)" in
41f556b9 443 squash|s|fixup|f)
b079feed 444 ;;
41f556b9 445 *)
b079feed
TR
446 flush_rewritten_pending
447 ;;
448 esac
449}
450
1b1dce4b 451do_next () {
a4049ae7 452 rm -f "$MSG" "$AUTHOR_SCRIPT" "$AMEND" || exit
57f2b6b2 453 read -r command sha1 rest < "$TODO"
1b1dce4b 454 case "$command" in
ff74126c 455 '#'*|''|noop)
1b1dce4b 456 mark_action_done
1b1dce4b 457 ;;
f8babc4d 458 pick|p)
1b1dce4b
JS
459 comment_for_reflog pick
460
461 mark_action_done
462 pick_one $sha1 ||
463 die_with_patch $sha1 "Could not apply $sha1... $rest"
b079feed 464 record_in_rewritten $sha1
1b1dce4b 465 ;;
6741aa6c
BG
466 reword|r)
467 comment_for_reflog reword
468
469 mark_action_done
470 pick_one $sha1 ||
471 die_with_patch $sha1 "Could not apply $sha1... $rest"
6f6bee3b 472 git commit --amend --no-post-rewrite
b079feed 473 record_in_rewritten $sha1
6741aa6c 474 ;;
f8babc4d 475 edit|e)
1b1dce4b
JS
476 comment_for_reflog edit
477
478 mark_action_done
479 pick_one $sha1 ||
480 die_with_patch $sha1 "Could not apply $sha1... $rest"
0acb62f2 481 echo "$sha1" > "$DOTEST"/stopped-sha
1b1dce4b 482 make_patch $sha1
a4049ae7 483 git rev-parse --verify HEAD > "$AMEND"
a8ccc204 484 warn "Stopped at $sha1... $rest"
1b1dce4b
JS
485 warn "You can amend the commit now, with"
486 warn
487 warn " git commit --amend"
488 warn
0460fb44
JS
489 warn "Once you are satisfied with your changes, run"
490 warn
491 warn " git rebase --continue"
492 warn
1b1dce4b
JS
493 exit 0
494 ;;
0205e72f
MH
495 squash|s|fixup|f)
496 case "$command" in
497 squash|s)
498 squash_style=squash
499 ;;
500 fixup|f)
501 squash_style=fixup
502 ;;
503 esac
504 comment_for_reflog $squash_style
1b1dce4b 505
12dd1112 506 test -f "$DONE" && has_action "$DONE" ||
0205e72f 507 die "Cannot '$squash_style' without a previous commit"
1b1dce4b
JS
508
509 mark_action_done
a25eb139 510 update_squash_messages $squash_style $sha1
7c418836 511 author_script=$(get_author_ident_from_commit HEAD)
5c5d059a
MH
512 echo "$author_script" > "$AUTHOR_SCRIPT"
513 eval "$author_script"
7c418836 514 output git reset --soft HEAD^
6bdcd0d2 515 pick_one -n $sha1 || die_failed_squash $sha1 "$rest"
6368f3f8 516 case "$(peek_next_command)" in
0205e72f 517 squash|s|fixup|f)
a25eb139
MH
518 # This is an intermediate commit; its message will only be
519 # used in case of trouble. So use the long version:
6bdcd0d2
MH
520 do_with_author output git commit --no-verify -F "$SQUASH_MSG" ||
521 die_failed_squash $sha1 "$rest"
376ccb8c 522 ;;
6368f3f8 523 *)
a25eb139 524 # This is the final command of this squash/fixup group
6bdcd0d2 525 if test -f "$FIXUP_MSG"
a25eb139 526 then
6bdcd0d2
MH
527 do_with_author git commit --no-verify -F "$FIXUP_MSG" ||
528 die_failed_squash $sha1 "$rest"
529 else
530 cp "$SQUASH_MSG" "$GIT_DIR"/SQUASH_MSG || exit
531 rm -f "$GIT_DIR"/MERGE_MSG
532 do_with_author git commit --no-verify -e ||
533 die_failed_squash $sha1 "$rest"
a25eb139 534 fi
6bdcd0d2 535 rm -f "$SQUASH_MSG" "$FIXUP_MSG"
376ccb8c 536 ;;
6368f3f8 537 esac
b079feed 538 record_in_rewritten $sha1
1b1dce4b 539 ;;
cd035b1c
MM
540 x|"exec")
541 read -r command rest < "$TODO"
542 mark_action_done
543 printf 'Executing: %s\n' "$rest"
544 # "exec" command doesn't take a sha1 in the todo-list.
545 # => can't just use $sha1 here.
546 git rev-parse --verify HEAD > "$DOTEST"/stopped-sha
547 ${SHELL:-@SHELL_PATH@} -c "$rest" # Actual execution
548 status=$?
549 if test "$status" -ne 0
550 then
551 warn "Execution failed: $rest"
552 warn "You can fix the problem, and then run"
553 warn
554 warn " git rebase --continue"
555 warn
556 exit "$status"
557 fi
558 # Run in subshell because require_clean_work_tree can die.
559 if ! (require_clean_work_tree)
560 then
561 warn "Commit or stash your changes, and then run"
562 warn
563 warn " git rebase --continue"
564 warn
565 exit 1
566 fi
567 ;;
1b1dce4b
JS
568 *)
569 warn "Unknown command: $command $sha1 $rest"
f1be316a
JK
570 if git rev-parse --verify -q "$sha1" >/dev/null
571 then
572 die_with_patch $sha1 "Please fix this in the file $TODO."
573 else
574 die "Please fix this in the file $TODO."
575 fi
376ccb8c 576 ;;
1b1dce4b
JS
577 esac
578 test -s "$TODO" && return
579
68a163c9
JS
580 comment_for_reflog finish &&
581 HEADNAME=$(cat "$DOTEST"/head-name) &&
582 OLDHEAD=$(cat "$DOTEST"/head) &&
583 SHORTONTO=$(git rev-parse --short $(cat "$DOTEST"/onto)) &&
72583e6c 584 NEWHEAD=$(git rev-parse HEAD) &&
73697a0b
JS
585 case $HEADNAME in
586 refs/*)
a0c0447b 587 message="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO" &&
73697a0b
JS
588 git update-ref -m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
589 git symbolic-ref HEAD $HEADNAME
590 ;;
591 esac && {
3df0a859 592 test ! -f "$DOTEST"/verbose ||
f3d5e463 593 git diff-tree --stat $(cat "$DOTEST"/head)..HEAD
3df0a859 594 } &&
eb2151bb 595 {
77bc6949 596 test -s "$REWRITTEN_LIST" &&
eb2151bb
TR
597 git notes copy --for-rewrite=rebase < "$REWRITTEN_LIST" ||
598 true # we don't care if this copying failed
599 } &&
b079feed
TR
600 if test -x "$GIT_DIR"/hooks/post-rewrite &&
601 test -s "$REWRITTEN_LIST"; then
602 "$GIT_DIR"/hooks/post-rewrite rebase < "$REWRITTEN_LIST"
603 true # we don't care if this hook failed
604 fi &&
1b1dce4b 605 rm -rf "$DOTEST" &&
73697a0b 606 git gc --auto &&
1b1dce4b
JS
607 warn "Successfully rebased and updated $HEADNAME."
608
609 exit
610}
611
612do_rest () {
613 while :
614 do
615 do_next
616 done
1b1dce4b
JS
617}
618
0e757e30
JS
619# skip picking commits whose parents are unchanged
620skip_unnecessary_picks () {
621 fd=3
cd035b1c 622 while read -r line
0e757e30 623 do
cd035b1c
MM
624 command=$(echo "$line" | sed 's/ */ /' | cut -d ' ' -f 1)
625 sha1=$(echo "$line" | sed 's/ */ /' | cut -d ' ' -f 2)
626 rest=$(echo "$line" | sed 's/ */ /' | cut -d ' ' -f 3-)
0e757e30 627 # fd=3 means we skip the command
cd035b1c 628 case "$fd,$command,$(git rev-parse --verify --quiet "$sha1"^)" in
0e757e30
JS
629 3,pick,"$ONTO"*|3,p,"$ONTO"*)
630 # pick a commit whose parent is current $ONTO -> skip
631 ONTO=$sha1
632 ;;
633 3,#*|3,,*)
634 # copy comments
635 ;;
636 *)
637 fd=1
638 ;;
639 esac
cd035b1c 640 echo "$line" >&$fd
0e757e30 641 done <"$TODO" >"$TODO.new" 3>>"$DONE" &&
b079feed
TR
642 mv -f "$TODO".new "$TODO" &&
643 case "$(peek_next_command)" in
644 squash|s|fixup|f)
645 record_in_rewritten "$ONTO"
646 ;;
647 esac ||
0e757e30
JS
648 die "Could not skip unnecessary pick commands"
649}
650
7970aaf0
SB
651# check if no other options are set
652is_standalone () {
653 test $# -eq 2 -a "$2" = '--' &&
654 test -z "$ONTO" &&
655 test -z "$PRESERVE_MERGES" &&
656 test -z "$STRATEGY" &&
657 test -z "$VERBOSE"
658}
659
660get_saved_options () {
661 test -d "$REWRITTEN" && PRESERVE_MERGES=t
662 test -f "$DOTEST"/strategy && STRATEGY="$(cat "$DOTEST"/strategy)"
663 test -f "$DOTEST"/verbose && VERBOSE=t
a6c7a276 664 test -f "$DOTEST"/rebase-root && REBASE_ROOT=t
7970aaf0
SB
665}
666
f59baa50
NS
667# Rearrange the todo list that has both "pick sha1 msg" and
668# "pick sha1 fixup!/squash! msg" appears in it so that the latter
669# comes immediately after the former, and change "pick" to
670# "fixup"/"squash".
671rearrange_squash () {
672 sed -n -e 's/^pick \([0-9a-f]*\) \(squash\)! /\1 \2 /p' \
673 -e 's/^pick \([0-9a-f]*\) \(fixup\)! /\1 \2 /p' \
674 "$1" >"$1.sq"
675 test -s "$1.sq" || return
676
677 used=
57f2b6b2 678 while read -r pick sha1 message
f59baa50
NS
679 do
680 case " $used" in
681 *" $sha1 "*) continue ;;
682 esac
683 echo "$pick $sha1 $message"
57f2b6b2 684 while read -r squash action msg
f59baa50
NS
685 do
686 case "$message" in
687 "$msg"*)
688 echo "$action $squash $action! $msg"
689 used="$used$squash "
690 ;;
691 esac
692 done <"$1.sq"
693 done >"$1.rearranged" <"$1"
694 cat "$1.rearranged" >"$1"
695 rm -f "$1.sq" "$1.rearranged"
696}
697
230a4566
NS
698LF='
699'
700parse_onto () {
701 case "$1" in
702 *...*)
703 if left=${1%...*} right=${1#*...} &&
704 onto=$(git merge-base --all ${left:-HEAD} ${right:-HEAD})
705 then
706 case "$onto" in
707 ?*"$LF"?* | '')
708 exit 1 ;;
709 esac
710 echo "$onto"
711 exit 0
712 fi
713 esac
714 git rev-parse --verify "$1^0"
715}
716
822f7c73 717while test $# != 0
1b1dce4b
JS
718do
719 case "$1" in
c4427656
NS
720 --no-verify)
721 OK_TO_SKIP_PRE_REBASE=yes
722 ;;
723 --verify)
724 ;;
1b1dce4b 725 --continue)
7970aaf0
SB
726 is_standalone "$@" || usage
727 get_saved_options
1b1dce4b
JS
728 comment_for_reflog continue
729
730 test -d "$DOTEST" || die "No interactive rebase running"
731
ab119032
JH
732 # Sanity check
733 git rev-parse --verify HEAD >/dev/null ||
734 die "Cannot read HEAD"
6848d58c
JS
735 git update-index --ignore-submodules --refresh &&
736 git diff-files --quiet --ignore-submodules ||
ab119032
JH
737 die "Working tree is dirty"
738
739 # do we have anything to commit?
6848d58c 740 if git diff-index --cached --quiet --ignore-submodules HEAD --
03270628 741 then
ab119032
JH
742 : Nothing to commit -- skip this
743 else
0aac0de4 744 . "$AUTHOR_SCRIPT" ||
ab119032 745 die "Cannot find the author identity"
8beb1f33 746 amend=
a4049ae7 747 if test -f "$AMEND"
ab119032 748 then
8beb1f33 749 amend=$(git rev-parse --verify HEAD)
a4049ae7 750 test "$amend" = $(cat "$AMEND") ||
c14c3c82
DP
751 die "\
752You have uncommitted changes in your working tree. Please, commit them
753first and then run 'git rebase --continue' again."
ab119032
JH
754 git reset --soft HEAD^ ||
755 die "Cannot rewind the HEAD"
756 fi
7756ecff 757 do_with_author git commit --no-verify -F "$MSG" -e || {
8beb1f33
DP
758 test -n "$amend" && git reset --soft $amend
759 die "Could not commit staged changes."
760 }
03270628 761 fi
18640d99 762
0acb62f2
TR
763 record_in_rewritten "$(cat "$DOTEST"/stopped-sha)"
764
1b1dce4b
JS
765 require_clean_work_tree
766 do_rest
767 ;;
768 --abort)
7970aaf0
SB
769 is_standalone "$@" || usage
770 get_saved_options
1b1dce4b
JS
771 comment_for_reflog abort
772
ecfe72ff 773 git rerere clear
1b1dce4b
JS
774 test -d "$DOTEST" || die "No interactive rebase running"
775
776 HEADNAME=$(cat "$DOTEST"/head-name)
777 HEAD=$(cat "$DOTEST"/head)
73697a0b
JS
778 case $HEADNAME in
779 refs/*)
780 git symbolic-ref HEAD $HEADNAME
781 ;;
782 esac &&
dfa49f33 783 output git reset --hard $HEAD &&
1b1dce4b
JS
784 rm -rf "$DOTEST"
785 exit
786 ;;
787 --skip)
7970aaf0
SB
788 is_standalone "$@" || usage
789 get_saved_options
1b1dce4b
JS
790 comment_for_reflog skip
791
ecfe72ff 792 git rerere clear
1b1dce4b
JS
793 test -d "$DOTEST" || die "No interactive rebase running"
794
dfa49f33 795 output git reset --hard && do_rest
1b1dce4b 796 ;;
7970aaf0 797 -s)
1b1dce4b
JS
798 case "$#,$1" in
799 *,*=*)
b5e960b1 800 STRATEGY="-s "$(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
1b1dce4b
JS
801 1,*)
802 usage ;;
803 *)
804 STRATEGY="-s $2"
805 shift ;;
806 esac
807 ;;
7970aaf0 808 -m)
1b1dce4b
JS
809 # we use merge anyway
810 ;;
7970aaf0 811 -v)
1b1dce4b
JS
812 VERBOSE=t
813 ;;
7970aaf0 814 -p)
f09c9b8c
JS
815 PRESERVE_MERGES=t
816 ;;
7970aaf0 817 -i)
1b1dce4b
JS
818 # yeah, we know
819 ;;
b4995494
MB
820 --no-ff)
821 NEVER_FF=t
822 ;;
d911d146
TR
823 --root)
824 REBASE_ROOT=t
825 ;;
f59baa50
NS
826 --autosquash)
827 AUTOSQUASH=t
828 ;;
7970aaf0
SB
829 --onto)
830 shift
230a4566 831 ONTO=$(parse_onto "$1") ||
7970aaf0 832 die "Does not point to a valid commit: $1"
1b1dce4b 833 ;;
7970aaf0
SB
834 --)
835 shift
277d7e91
JS
836 test -z "$REBASE_ROOT" -a $# -ge 1 -a $# -le 2 ||
837 test ! -z "$REBASE_ROOT" -a $# -le 1 || usage
1b1dce4b
JS
838 test -d "$DOTEST" &&
839 die "Interactive rebase already started"
840
841 git var GIT_COMMITTER_IDENT >/dev/null ||
842 die "You need to set your committer info first"
843
d911d146
TR
844 if test -z "$REBASE_ROOT"
845 then
846 UPSTREAM_ARG="$1"
847 UPSTREAM=$(git rev-parse --verify "$1") || die "Invalid base"
848 test -z "$ONTO" && ONTO=$UPSTREAM
849 shift
850 else
a6c7a276 851 UPSTREAM=
d911d146
TR
852 UPSTREAM_ARG=--root
853 test -z "$ONTO" &&
854 die "You must specify --onto when using --root"
855 fi
856 run_pre_rebase_hook "$UPSTREAM_ARG" "$@"
d8fab023 857
1b1dce4b
JS
858 comment_for_reflog start
859
1b1dce4b
JS
860 require_clean_work_tree
861
d911d146 862 if test ! -z "$1"
1b1dce4b 863 then
d911d146
TR
864 output git checkout "$1" ||
865 die "Could not checkout $1"
1b1dce4b
JS
866 fi
867
868 HEAD=$(git rev-parse --verify HEAD) || die "No HEAD?"
5166810b
MK
869 mkdir "$DOTEST" || die "Could not create temporary $DOTEST"
870
1b1dce4b 871 : > "$DOTEST"/interactive || die "Could not mark as interactive"
73697a0b
JS
872 git symbolic-ref HEAD > "$DOTEST"/head-name 2> /dev/null ||
873 echo "detached HEAD" > "$DOTEST"/head-name
1b1dce4b
JS
874
875 echo $HEAD > "$DOTEST"/head
a6c7a276
JH
876 case "$REBASE_ROOT" in
877 '')
878 rm -f "$DOTEST"/rebase-root ;;
879 *)
880 : >"$DOTEST"/rebase-root ;;
881 esac
1b1dce4b 882 echo $ONTO > "$DOTEST"/onto
8e4a91bd 883 test -z "$STRATEGY" || echo "$STRATEGY" > "$DOTEST"/strategy
1b1dce4b 884 test t = "$VERBOSE" && : > "$DOTEST"/verbose
3b38ec16 885 if test t = "$PRESERVE_MERGES"
f09c9b8c 886 then
d911d146
TR
887 if test -z "$REBASE_ROOT"
888 then
889 mkdir "$REWRITTEN" &&
890 for c in $(git merge-base --all $HEAD $UPSTREAM)
891 do
892 echo $ONTO > "$REWRITTEN"/$c ||
893 die "Could not init rewritten commits"
894 done
895 else
896 mkdir "$REWRITTEN" &&
897 echo $ONTO > "$REWRITTEN"/root ||
f09c9b8c 898 die "Could not init rewritten commits"
d911d146 899 fi
acc8559a
SH
900 # No cherry-pick because our first pass is to determine
901 # parents to rewrite and skipping dropped commits would
902 # prematurely end our probe
f09c9b8c 903 MERGES_OPTION=
d80d6bc1 904 first_after_upstream="$(git rev-list --reverse --first-parent $UPSTREAM..$HEAD | head -n 1)"
f09c9b8c 905 else
acc8559a 906 MERGES_OPTION="--no-merges --cherry-pick"
f09c9b8c 907 fi
1b1dce4b 908
c54b7817
JS
909 SHORTHEAD=$(git rev-parse --short $HEAD)
910 SHORTONTO=$(git rev-parse --short $ONTO)
d911d146
TR
911 if test -z "$REBASE_ROOT"
912 # this is now equivalent to ! -z "$UPSTREAM"
913 then
914 SHORTUPSTREAM=$(git rev-parse --short $UPSTREAM)
915 REVISIONS=$UPSTREAM...$HEAD
916 SHORTREVISIONS=$SHORTUPSTREAM..$SHORTHEAD
917 else
918 REVISIONS=$ONTO...$HEAD
919 SHORTREVISIONS=$SHORTHEAD
920 fi
6047a234 921 git rev-list $MERGES_OPTION --pretty=oneline --abbrev-commit \
acc8559a 922 --abbrev=7 --reverse --left-right --topo-order \
d911d146 923 $REVISIONS | \
41f556b9 924 sed -n "s/^>//p" |
57f2b6b2 925 while read -r shortsha1 rest
acc8559a
SH
926 do
927 if test t != "$PRESERVE_MERGES"
928 then
929 echo "pick $shortsha1 $rest" >> "$TODO"
930 else
931 sha1=$(git rev-parse $shortsha1)
d911d146
TR
932 if test -z "$REBASE_ROOT"
933 then
934 preserve=t
935 for p in $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)
936 do
1830d9cb 937 if test -f "$REWRITTEN"/$p -a \( $p != $ONTO -o $sha1 = $first_after_upstream \)
d911d146
TR
938 then
939 preserve=f
940 fi
941 done
942 else
943 preserve=f
944 fi
acc8559a
SH
945 if test f = "$preserve"
946 then
947 touch "$REWRITTEN"/$sha1
948 echo "pick $shortsha1 $rest" >> "$TODO"
949 fi
950 fi
951 done
952
953 # Watch for commits that been dropped by --cherry-pick
954 if test t = "$PRESERVE_MERGES"
955 then
956 mkdir "$DROPPED"
957 # Save all non-cherry-picked changes
d911d146 958 git rev-list $REVISIONS --left-right --cherry-pick | \
acc8559a
SH
959 sed -n "s/^>//p" > "$DOTEST"/not-cherry-picks
960 # Now all commits and note which ones are missing in
961 # not-cherry-picks and hence being dropped
d911d146 962 git rev-list $REVISIONS |
e249044c 963 while read rev
acc8559a 964 do
e1622bfc 965 if test -f "$REWRITTEN"/$rev -a "$(sane_grep "$rev" "$DOTEST"/not-cherry-picks)" = ""
acc8559a
SH
966 then
967 # Use -f2 because if rev-list is telling us this commit is
968 # not worthwhile, we don't want to track its multiple heads,
969 # just the history of its first-parent for others that will
970 # be rebasing on top of it
d911d146 971 git rev-list --parents -1 $rev | cut -d' ' -s -f2 > "$DROPPED"/$rev
e249044c 972 short=$(git rev-list -1 --abbrev-commit --abbrev=7 $rev)
e1622bfc 973 sane_grep -v "^[a-z][a-z]* $short" <"$TODO" > "${TODO}2" ; mv "${TODO}2" "$TODO"
acc8559a
SH
974 rm "$REWRITTEN"/$rev
975 fi
976 done
977 fi
d911d146 978
ff74126c 979 test -s "$TODO" || echo noop >> "$TODO"
f59baa50 980 test -n "$AUTOSQUASH" && rearrange_squash "$TODO"
6047a234
JS
981 cat >> "$TODO" << EOF
982
d911d146 983# Rebase $SHORTREVISIONS onto $SHORTONTO
1b1dce4b
JS
984#
985# Commands:
88b1f0b8 986# p, pick = use commit
6741aa6c 987# r, reword = use commit, but edit the commit message
88b1f0b8
MV
988# e, edit = use commit, but stop for amending
989# s, squash = use commit, but meld into previous commit
0205e72f 990# f, fixup = like "squash", but discard this commit's log message
cd035b1c 991# x <cmd>, exec <cmd> = Run a shell command <cmd>, and stop if it fails
82576ddb
JS
992#
993# If you remove a line here THAT COMMIT WILL BE LOST.
6047a234 994# However, if you remove everything, the rebase will be aborted.
82576ddb 995#
1b1dce4b 996EOF
1b1dce4b 997
376ccb8c 998 has_action "$TODO" ||
c54b7817 999 die_abort "Nothing to do"
1b1dce4b
JS
1000
1001 cp "$TODO" "$TODO".backup
ef0c2abf 1002 git_editor "$TODO" ||
e49ca974 1003 die_abort "Could not execute editor"
1b1dce4b 1004
376ccb8c 1005 has_action "$TODO" ||
c54b7817
JS
1006 die_abort "Nothing to do"
1007
b4995494 1008 test -d "$REWRITTEN" || test -n "$NEVER_FF" || skip_unnecessary_picks
0e757e30 1009
b096374f 1010 output git checkout $ONTO || die_abort "could not detach HEAD"
22e40795 1011 git update-ref ORIG_HEAD $HEAD
b096374f 1012 do_rest
376ccb8c 1013 ;;
1b1dce4b
JS
1014 esac
1015 shift
1016done