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