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