Code

rebase: align variable names
[git.git] / git-rebase--interactive.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Johannes E. Schindelin
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
13 OPTIONS_KEEPDASHDASH=
14 OPTIONS_SPEC="\
15 git-rebase [-i] [options] [--] <upstream> [<branch>]
16 git-rebase [-i] (--continue | --abort | --skip)
17 --
18  Available options are
19 v,verbose          display a diffstat of what changed upstream
20 onto=              rebase onto given branch instead of upstream
21 p,preserve-merges  try to recreate merges instead of ignoring them
22 s,strategy=        use the given merge strategy
23 no-ff              cherry-pick all commits, even if unchanged
24 m,merge            always used (no-op)
25 i,interactive      always used (no-op)
26  Actions:
27 continue           continue rebasing process
28 abort              abort rebasing process and restore original branch
29 skip               skip current patch and continue rebasing process
30 no-verify          override pre-rebase hook from stopping the operation
31 verify             allow pre-rebase hook to run
32 root               rebase all reachable commmits up to the root(s)
33 autosquash         move commits that begin with squash!/fixup! under -i
34 "
36 . git-sh-setup
37 require_work_tree
39 dotest="$GIT_DIR/rebase-merge"
41 # The file containing rebase commands, comments, and empty lines.
42 # This file is created by "git rebase -i" then edited by the user.  As
43 # the lines are processed, they are removed from the front of this
44 # file and written to the tail of $done.
45 todo="$dotest"/git-rebase-todo
47 # The rebase command lines that have already been processed.  A line
48 # is moved here when it is first handled, before any associated user
49 # actions.
50 done="$dotest"/done
52 # The commit message that is planned to be used for any changes that
53 # need to be committed following a user interaction.
54 msg="$dotest"/message
56 # The file into which is accumulated the suggested commit message for
57 # squash/fixup commands.  When the first of a series of squash/fixups
58 # is seen, the file is created and the commit message from the
59 # previous commit and from the first squash/fixup commit are written
60 # to it.  The commit message for each subsequent squash/fixup commit
61 # is appended to the file as it is processed.
62 #
63 # The first line of the file is of the form
64 #     # This is a combination of $count commits.
65 # where $count is the number of commits whose messages have been
66 # written to the file so far (including the initial "pick" commit).
67 # Each time that a commit message is processed, this line is read and
68 # updated.  It is deleted just before the combined commit is made.
69 squash_msg="$dotest"/message-squash
71 # If the current series of squash/fixups has not yet included a squash
72 # command, then this file exists and holds the commit message of the
73 # original "pick" commit.  (If the series ends without a "squash"
74 # command, then this can be used as the commit message of the combined
75 # commit without opening the editor.)
76 fixup_msg="$dotest"/message-fixup
78 # $rewritten is the name of a directory containing files for each
79 # commit that is reachable by at least one merge base of $head and
80 # $upstream. They are not necessarily rewritten, but their children
81 # might be.  This ensures that commits on merged, but otherwise
82 # unrelated side branches are left alone. (Think "X" in the man page's
83 # example.)
84 rewritten="$dotest"/rewritten
86 dropped="$dotest"/dropped
88 # A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
89 # GIT_AUTHOR_DATE that will be used for the commit that is currently
90 # being rebased.
91 author_script="$dotest"/author-script
93 # When an "edit" rebase command is being processed, the SHA1 of the
94 # commit to be edited is recorded in this file.  When "git rebase
95 # --continue" is executed, if there are any staged changes then they
96 # will be amended to the HEAD commit, but only provided the HEAD
97 # commit is still the commit to be edited.  When any other rebase
98 # command is processed, this file is deleted.
99 amend="$dotest"/amend
101 # For the post-rewrite hook, we make a list of rewritten commits and
102 # their new sha1s.  The rewritten-pending list keeps the sha1s of
103 # commits that have been processed, but not committed yet,
104 # e.g. because they are waiting for a 'squash' command.
105 rewritten_list="$dotest"/rewritten-list
106 rewritten_pending="$dotest"/rewritten-pending
108 preserve_merges=
109 strategy=
110 onto=
111 verbose=
112 ok_to_skip_pre_rebase=
113 rebase_root=
114 autosquash=
115 test "$(git config --bool rebase.autosquash)" = "true" && autosquash=t
116 force_rebase=
118 GIT_CHERRY_PICK_HELP="\
119 hint: after resolving the conflicts, mark the corrected paths
120 hint: with 'git add <paths>' and run 'git rebase --continue'"
121 export GIT_CHERRY_PICK_HELP
123 warn () {
124         printf '%s\n' "$*" >&2
127 output () {
128         case "$verbose" in
129         '')
130                 output=$("$@" 2>&1 )
131                 status=$?
132                 test $status != 0 && printf "%s\n" "$output"
133                 return $status
134                 ;;
135         *)
136                 "$@"
137                 ;;
138         esac
141 # Output the commit message for the specified commit.
142 commit_message () {
143         git cat-file commit "$1" | sed "1,/^$/d"
146 run_pre_rebase_hook () {
147         if test -z "$ok_to_skip_pre_rebase" &&
148            test -x "$GIT_DIR/hooks/pre-rebase"
149         then
150                 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
151                         echo >&2 "The pre-rebase hook refused to rebase."
152                         exit 1
153                 }
154         fi
158 orig_reflog_action="$GIT_REFLOG_ACTION"
160 comment_for_reflog () {
161         case "$orig_reflog_action" in
162         ''|rebase*)
163                 GIT_REFLOG_ACTION="rebase -i ($1)"
164                 export GIT_REFLOG_ACTION
165                 ;;
166         esac
169 last_count=
170 mark_action_done () {
171         sed -e 1q < "$todo" >> "$done"
172         sed -e 1d < "$todo" >> "$todo".new
173         mv -f "$todo".new "$todo"
174         new_count=$(sane_grep -c '^[^#]' < "$done")
175         total=$(($new_count+$(sane_grep -c '^[^#]' < "$todo")))
176         if test "$last_count" != "$new_count"
177         then
178                 last_count=$new_count
179                 printf "Rebasing (%d/%d)\r" $new_count $total
180                 test -z "$verbose" || echo
181         fi
184 make_patch () {
185         sha1_and_parents="$(git rev-list --parents -1 "$1")"
186         case "$sha1_and_parents" in
187         ?*' '?*' '?*)
188                 git diff --cc $sha1_and_parents
189                 ;;
190         ?*' '?*)
191                 git diff-tree -p "$1^!"
192                 ;;
193         *)
194                 echo "Root commit"
195                 ;;
196         esac > "$dotest"/patch
197         test -f "$msg" ||
198                 commit_message "$1" > "$msg"
199         test -f "$author_script" ||
200                 get_author_ident_from_commit "$1" > "$author_script"
203 die_with_patch () {
204         echo "$1" > "$dotest"/stopped-sha
205         make_patch "$1"
206         git rerere
207         die "$2"
210 die_abort () {
211         rm -rf "$dotest"
212         die "$1"
215 has_action () {
216         sane_grep '^[^#]' "$1" >/dev/null
219 # Run command with GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
220 # GIT_AUTHOR_DATE exported from the current environment.
221 do_with_author () {
222         (
223                 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
224                 "$@"
225         )
228 pick_one () {
229         ff=--ff
230         case "$1" in -n) sha1=$2; ff= ;; *) sha1=$1 ;; esac
231         case "$force_rebase" in '') ;; ?*) ff= ;; esac
232         output git rev-parse --verify $sha1 || die "Invalid commit name: $sha1"
233         test -d "$rewritten" &&
234                 pick_one_preserving_merges "$@" && return
235         if test -n "$rebase_root"
236         then
237                 output git cherry-pick "$@"
238                 return
239         fi
240         output git cherry-pick $ff "$@"
243 pick_one_preserving_merges () {
244         fast_forward=t
245         case "$1" in
246         -n)
247                 fast_forward=f
248                 sha1=$2
249                 ;;
250         *)
251                 sha1=$1
252                 ;;
253         esac
254         sha1=$(git rev-parse $sha1)
256         if test -f "$dotest"/current-commit
257         then
258                 if test "$fast_forward" = t
259                 then
260                         while read current_commit
261                         do
262                                 git rev-parse HEAD > "$rewritten"/$current_commit
263                         done <"$dotest"/current-commit
264                         rm "$dotest"/current-commit ||
265                         die "Cannot write current commit's replacement sha1"
266                 fi
267         fi
269         echo $sha1 >> "$dotest"/current-commit
271         # rewrite parents; if none were rewritten, we can fast-forward.
272         new_parents=
273         pend=" $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)"
274         if test "$pend" = " "
275         then
276                 pend=" root"
277         fi
278         while [ "$pend" != "" ]
279         do
280                 p=$(expr "$pend" : ' \([^ ]*\)')
281                 pend="${pend# $p}"
283                 if test -f "$rewritten"/$p
284                 then
285                         new_p=$(cat "$rewritten"/$p)
287                         # If the todo reordered commits, and our parent is marked for
288                         # rewriting, but hasn't been gotten to yet, assume the user meant to
289                         # drop it on top of the current HEAD
290                         if test -z "$new_p"
291                         then
292                                 new_p=$(git rev-parse HEAD)
293                         fi
295                         test $p != $new_p && fast_forward=f
296                         case "$new_parents" in
297                         *$new_p*)
298                                 ;; # do nothing; that parent is already there
299                         *)
300                                 new_parents="$new_parents $new_p"
301                                 ;;
302                         esac
303                 else
304                         if test -f "$dropped"/$p
305                         then
306                                 fast_forward=f
307                                 replacement="$(cat "$dropped"/$p)"
308                                 test -z "$replacement" && replacement=root
309                                 pend=" $replacement$pend"
310                         else
311                                 new_parents="$new_parents $p"
312                         fi
313                 fi
314         done
315         case $fast_forward in
316         t)
317                 output warn "Fast-forward to $sha1"
318                 output git reset --hard $sha1 ||
319                         die "Cannot fast-forward to $sha1"
320                 ;;
321         f)
322                 first_parent=$(expr "$new_parents" : ' \([^ ]*\)')
324                 if [ "$1" != "-n" ]
325                 then
326                         # detach HEAD to current parent
327                         output git checkout $first_parent 2> /dev/null ||
328                                 die "Cannot move HEAD to $first_parent"
329                 fi
331                 case "$new_parents" in
332                 ' '*' '*)
333                         test "a$1" = a-n && die "Refusing to squash a merge: $sha1"
335                         # redo merge
336                         author_script_content=$(get_author_ident_from_commit $sha1)
337                         eval "$author_script_content"
338                         msg_content="$(commit_message $sha1)"
339                         # No point in merging the first parent, that's HEAD
340                         new_parents=${new_parents# $first_parent}
341                         if ! do_with_author output \
342                                 git merge $strategy -m "$msg_content" $new_parents
343                         then
344                                 printf "%s\n" "$msg_content" > "$GIT_DIR"/MERGE_MSG
345                                 die_with_patch $sha1 "Error redoing merge $sha1"
346                         fi
347                         echo "$sha1 $(git rev-parse HEAD^0)" >> "$rewritten_list"
348                         ;;
349                 *)
350                         output git cherry-pick "$@" ||
351                                 die_with_patch $sha1 "Could not pick $sha1"
352                         ;;
353                 esac
354                 ;;
355         esac
358 nth_string () {
359         case "$1" in
360         *1[0-9]|*[04-9]) echo "$1"th;;
361         *1) echo "$1"st;;
362         *2) echo "$1"nd;;
363         *3) echo "$1"rd;;
364         esac
367 update_squash_messages () {
368         if test -f "$squash_msg"; then
369                 mv "$squash_msg" "$squash_msg".bak || exit
370                 count=$(($(sed -n \
371                         -e "1s/^# This is a combination of \(.*\) commits\./\1/p" \
372                         -e "q" < "$squash_msg".bak)+1))
373                 {
374                         echo "# This is a combination of $count commits."
375                         sed -e 1d -e '2,/^./{
376                                 /^$/d
377                         }' <"$squash_msg".bak
378                 } >"$squash_msg"
379         else
380                 commit_message HEAD > "$fixup_msg" || die "Cannot write $fixup_msg"
381                 count=2
382                 {
383                         echo "# This is a combination of 2 commits."
384                         echo "# The first commit's message is:"
385                         echo
386                         cat "$fixup_msg"
387                 } >"$squash_msg"
388         fi
389         case $1 in
390         squash)
391                 rm -f "$fixup_msg"
392                 echo
393                 echo "# This is the $(nth_string $count) commit message:"
394                 echo
395                 commit_message $2
396                 ;;
397         fixup)
398                 echo
399                 echo "# The $(nth_string $count) commit message will be skipped:"
400                 echo
401                 commit_message $2 | sed -e 's/^/#       /'
402                 ;;
403         esac >>"$squash_msg"
406 peek_next_command () {
407         sed -n -e "/^#/d" -e '/^$/d' -e "s/ .*//p" -e "q" < "$todo"
410 # A squash/fixup has failed.  Prepare the long version of the squash
411 # commit message, then die_with_patch.  This code path requires the
412 # user to edit the combined commit message for all commits that have
413 # been squashed/fixedup so far.  So also erase the old squash
414 # messages, effectively causing the combined commit to be used as the
415 # new basis for any further squash/fixups.  Args: sha1 rest
416 die_failed_squash() {
417         mv "$squash_msg" "$msg" || exit
418         rm -f "$fixup_msg"
419         cp "$msg" "$GIT_DIR"/MERGE_MSG || exit
420         warn
421         warn "Could not apply $1... $2"
422         die_with_patch $1 ""
425 flush_rewritten_pending() {
426         test -s "$rewritten_pending" || return
427         newsha1="$(git rev-parse HEAD^0)"
428         sed "s/$/ $newsha1/" < "$rewritten_pending" >> "$rewritten_list"
429         rm -f "$rewritten_pending"
432 record_in_rewritten() {
433         oldsha1="$(git rev-parse $1)"
434         echo "$oldsha1" >> "$rewritten_pending"
436         case "$(peek_next_command)" in
437         squash|s|fixup|f)
438                 ;;
439         *)
440                 flush_rewritten_pending
441                 ;;
442         esac
445 do_next () {
446         rm -f "$msg" "$author_script" "$amend" || exit
447         read -r command sha1 rest < "$todo"
448         case "$command" in
449         '#'*|''|noop)
450                 mark_action_done
451                 ;;
452         pick|p)
453                 comment_for_reflog pick
455                 mark_action_done
456                 pick_one $sha1 ||
457                         die_with_patch $sha1 "Could not apply $sha1... $rest"
458                 record_in_rewritten $sha1
459                 ;;
460         reword|r)
461                 comment_for_reflog reword
463                 mark_action_done
464                 pick_one $sha1 ||
465                         die_with_patch $sha1 "Could not apply $sha1... $rest"
466                 git commit --amend --no-post-rewrite
467                 record_in_rewritten $sha1
468                 ;;
469         edit|e)
470                 comment_for_reflog edit
472                 mark_action_done
473                 pick_one $sha1 ||
474                         die_with_patch $sha1 "Could not apply $sha1... $rest"
475                 echo "$sha1" > "$dotest"/stopped-sha
476                 make_patch $sha1
477                 git rev-parse --verify HEAD > "$amend"
478                 warn "Stopped at $sha1... $rest"
479                 warn "You can amend the commit now, with"
480                 warn
481                 warn "  git commit --amend"
482                 warn
483                 warn "Once you are satisfied with your changes, run"
484                 warn
485                 warn "  git rebase --continue"
486                 warn
487                 exit 0
488                 ;;
489         squash|s|fixup|f)
490                 case "$command" in
491                 squash|s)
492                         squash_style=squash
493                         ;;
494                 fixup|f)
495                         squash_style=fixup
496                         ;;
497                 esac
498                 comment_for_reflog $squash_style
500                 test -f "$done" && has_action "$done" ||
501                         die "Cannot '$squash_style' without a previous commit"
503                 mark_action_done
504                 update_squash_messages $squash_style $sha1
505                 author_script_content=$(get_author_ident_from_commit HEAD)
506                 echo "$author_script_content" > "$author_script"
507                 eval "$author_script_content"
508                 output git reset --soft HEAD^
509                 pick_one -n $sha1 || die_failed_squash $sha1 "$rest"
510                 case "$(peek_next_command)" in
511                 squash|s|fixup|f)
512                         # This is an intermediate commit; its message will only be
513                         # used in case of trouble.  So use the long version:
514                         do_with_author output git commit --no-verify -F "$squash_msg" ||
515                                 die_failed_squash $sha1 "$rest"
516                         ;;
517                 *)
518                         # This is the final command of this squash/fixup group
519                         if test -f "$fixup_msg"
520                         then
521                                 do_with_author git commit --no-verify -F "$fixup_msg" ||
522                                         die_failed_squash $sha1 "$rest"
523                         else
524                                 cp "$squash_msg" "$GIT_DIR"/SQUASH_MSG || exit
525                                 rm -f "$GIT_DIR"/MERGE_MSG
526                                 do_with_author git commit --no-verify -e ||
527                                         die_failed_squash $sha1 "$rest"
528                         fi
529                         rm -f "$squash_msg" "$fixup_msg"
530                         ;;
531                 esac
532                 record_in_rewritten $sha1
533                 ;;
534         x|"exec")
535                 read -r command rest < "$todo"
536                 mark_action_done
537                 printf 'Executing: %s\n' "$rest"
538                 # "exec" command doesn't take a sha1 in the todo-list.
539                 # => can't just use $sha1 here.
540                 git rev-parse --verify HEAD > "$dotest"/stopped-sha
541                 ${SHELL:-@SHELL_PATH@} -c "$rest" # Actual execution
542                 status=$?
543                 if test "$status" -ne 0
544                 then
545                         warn "Execution failed: $rest"
546                         warn "You can fix the problem, and then run"
547                         warn
548                         warn "  git rebase --continue"
549                         warn
550                         exit "$status"
551                 fi
552                 # Run in subshell because require_clean_work_tree can die.
553                 if ! (require_clean_work_tree "rebase")
554                 then
555                         warn "Commit or stash your changes, and then run"
556                         warn
557                         warn "  git rebase --continue"
558                         warn
559                         exit 1
560                 fi
561                 ;;
562         *)
563                 warn "Unknown command: $command $sha1 $rest"
564                 if git rev-parse --verify -q "$sha1" >/dev/null
565                 then
566                         die_with_patch $sha1 "Please fix this in the file $todo."
567                 else
568                         die "Please fix this in the file $todo."
569                 fi
570                 ;;
571         esac
572         test -s "$todo" && return
574         comment_for_reflog finish &&
575         headname=$(cat "$dotest"/head-name) &&
576         oldhead=$(cat "$dotest"/head) &&
577         shortonto=$(git rev-parse --short $(cat "$dotest"/onto)) &&
578         newhead=$(git rev-parse HEAD) &&
579         case $headname in
580         refs/*)
581                 message="$GIT_REFLOG_ACTION: $headname onto $shortonto" &&
582                 git update-ref -m "$message" $headname $newhead $oldhead &&
583                 git symbolic-ref HEAD $headname
584                 ;;
585         esac && {
586                 test ! -f "$dotest"/verbose ||
587                         git diff-tree --stat $(cat "$dotest"/head)..HEAD
588         } &&
589         {
590                 test -s "$rewritten_list" &&
591                 git notes copy --for-rewrite=rebase < "$rewritten_list" ||
592                 true # we don't care if this copying failed
593         } &&
594         if test -x "$GIT_DIR"/hooks/post-rewrite &&
595                 test -s "$rewritten_list"; then
596                 "$GIT_DIR"/hooks/post-rewrite rebase < "$rewritten_list"
597                 true # we don't care if this hook failed
598         fi &&
599         rm -rf "$dotest" &&
600         git gc --auto &&
601         warn "Successfully rebased and updated $headname."
603         exit
606 do_rest () {
607         while :
608         do
609                 do_next
610         done
613 # skip picking commits whose parents are unchanged
614 skip_unnecessary_picks () {
615         fd=3
616         while read -r command rest
617         do
618                 # fd=3 means we skip the command
619                 case "$fd,$command" in
620                 3,pick|3,p)
621                         # pick a commit whose parent is current $onto -> skip
622                         sha1=${rest%% *}
623                         case "$(git rev-parse --verify --quiet "$sha1"^)" in
624                         "$onto"*)
625                                 onto=$sha1
626                                 ;;
627                         *)
628                                 fd=1
629                                 ;;
630                         esac
631                         ;;
632                 3,#*|3,)
633                         # copy comments
634                         ;;
635                 *)
636                         fd=1
637                         ;;
638                 esac
639                 printf '%s\n' "$command${rest:+ }$rest" >&$fd
640         done <"$todo" >"$todo.new" 3>>"$done" &&
641         mv -f "$todo".new "$todo" &&
642         case "$(peek_next_command)" in
643         squash|s|fixup|f)
644                 record_in_rewritten "$onto"
645                 ;;
646         esac ||
647         die "Could not skip unnecessary pick commands"
650 # check if no other options are set
651 is_standalone () {
652         test $# -eq 2 -a "$2" = '--' &&
653         test -z "$onto" &&
654         test -z "$preserve_merges" &&
655         test -z "$strategy" &&
656         test -z "$verbose"
659 get_saved_options () {
660         test -d "$rewritten" && preserve_merges=t
661         test -f "$dotest"/strategy && strategy="$(cat "$dotest"/strategy)"
662         test -f "$dotest"/verbose && verbose=t
663         test -f "$dotest"/rebase-root && rebase_root=t
666 # Rearrange the todo list that has both "pick sha1 msg" and
667 # "pick sha1 fixup!/squash! msg" appears in it so that the latter
668 # comes immediately after the former, and change "pick" to
669 # "fixup"/"squash".
670 rearrange_squash () {
671         # extract fixup!/squash! lines and resolve any referenced sha1's
672         while read -r pick sha1 message
673         do
674                 case "$message" in
675                 "squash! "*|"fixup! "*)
676                         action="${message%%!*}"
677                         rest="${message#*! }"
678                         echo "$sha1 $action $rest"
679                         # if it's a single word, try to resolve to a full sha1 and
680                         # emit a second copy. This allows us to match on both message
681                         # and on sha1 prefix
682                         if test "${rest#* }" = "$rest"; then
683                                 fullsha="$(git rev-parse -q --verify "$rest" 2>/dev/null)"
684                                 if test -n "$fullsha"; then
685                                         # prefix the action to uniquely identify this line as
686                                         # intended for full sha1 match
687                                         echo "$sha1 +$action $fullsha"
688                                 fi
689                         fi
690                 esac
691         done >"$1.sq" <"$1"
692         test -s "$1.sq" || return
694         used=
695         while read -r pick sha1 message
696         do
697                 case " $used" in
698                 *" $sha1 "*) continue ;;
699                 esac
700                 printf '%s\n' "$pick $sha1 $message"
701                 used="$used$sha1 "
702                 while read -r squash action msg_content
703                 do
704                         case " $used" in
705                         *" $squash "*) continue ;;
706                         esac
707                         emit=0
708                         case "$action" in
709                         +*)
710                                 action="${action#+}"
711                                 # full sha1 prefix test
712                                 case "$msg_content" in "$sha1"*) emit=1;; esac ;;
713                         *)
714                                 # message prefix test
715                                 case "$message" in "$msg_content"*) emit=1;; esac ;;
716                         esac
717                         if test $emit = 1; then
718                                 printf '%s\n' "$action $squash $action! $msg_content"
719                                 used="$used$squash "
720                         fi
721                 done <"$1.sq"
722         done >"$1.rearranged" <"$1"
723         cat "$1.rearranged" >"$1"
724         rm -f "$1.sq" "$1.rearranged"
727 LF='
729 parse_onto () {
730         case "$1" in
731         *...*)
732                 if      left=${1%...*} right=${1#*...} &&
733                         onto=$(git merge-base --all ${left:-HEAD} ${right:-HEAD})
734                 then
735                         case "$onto" in
736                         ?*"$LF"?* | '')
737                                 exit 1 ;;
738                         esac
739                         echo "$onto"
740                         exit 0
741                 fi
742         esac
743         git rev-parse --verify "$1^0"
746 while test $# != 0
747 do
748         case "$1" in
749         --no-verify)
750                 ok_to_skip_pre_rebase=yes
751                 ;;
752         --verify)
753                 ok_to_skip_pre_rebase=
754                 ;;
755         --continue)
756                 is_standalone "$@" || usage
757                 get_saved_options
758                 comment_for_reflog continue
760                 test -d "$dotest" || die "No interactive rebase running"
762                 # Sanity check
763                 git rev-parse --verify HEAD >/dev/null ||
764                         die "Cannot read HEAD"
765                 git update-index --ignore-submodules --refresh &&
766                         git diff-files --quiet --ignore-submodules ||
767                         die "Working tree is dirty"
769                 # do we have anything to commit?
770                 if git diff-index --cached --quiet --ignore-submodules HEAD --
771                 then
772                         : Nothing to commit -- skip this
773                 else
774                         . "$author_script" ||
775                                 die "Cannot find the author identity"
776                         current_head=
777                         if test -f "$amend"
778                         then
779                                 current_head=$(git rev-parse --verify HEAD)
780                                 test "$current_head" = $(cat "$amend") ||
781                                 die "\
782 You have uncommitted changes in your working tree. Please, commit them
783 first and then run 'git rebase --continue' again."
784                                 git reset --soft HEAD^ ||
785                                 die "Cannot rewind the HEAD"
786                         fi
787                         do_with_author git commit --no-verify -F "$msg" -e || {
788                                 test -n "$current_head" && git reset --soft $current_head
789                                 die "Could not commit staged changes."
790                         }
791                 fi
793                 record_in_rewritten "$(cat "$dotest"/stopped-sha)"
795                 require_clean_work_tree "rebase"
796                 do_rest
797                 ;;
798         --abort)
799                 is_standalone "$@" || usage
800                 get_saved_options
801                 comment_for_reflog abort
803                 git rerere clear
804                 test -d "$dotest" || die "No interactive rebase running"
806                 headname=$(cat "$dotest"/head-name)
807                 head=$(cat "$dotest"/head)
808                 case $headname in
809                 refs/*)
810                         git symbolic-ref HEAD $headname
811                         ;;
812                 esac &&
813                 output git reset --hard $head &&
814                 rm -rf "$dotest"
815                 exit
816                 ;;
817         --skip)
818                 is_standalone "$@" || usage
819                 get_saved_options
820                 comment_for_reflog skip
822                 git rerere clear
823                 test -d "$dotest" || die "No interactive rebase running"
825                 output git reset --hard && do_rest
826                 ;;
827         -s)
828                 case "$#,$1" in
829                 *,*=*)
830                         strategy="-s "$(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
831                 1,*)
832                         usage ;;
833                 *)
834                         strategy="-s $2"
835                         shift ;;
836                 esac
837                 ;;
838         -m)
839                 # we use merge anyway
840                 ;;
841         -v)
842                 verbose=t
843                 ;;
844         -p)
845                 preserve_merges=t
846                 ;;
847         -i)
848                 # yeah, we know
849                 ;;
850         --no-ff)
851                 force_rebase=t
852                 ;;
853         --root)
854                 rebase_root=t
855                 ;;
856         --autosquash)
857                 autosquash=t
858                 ;;
859         --no-autosquash)
860                 autosquash=
861                 ;;
862         --onto)
863                 shift
864                 onto=$(parse_onto "$1") ||
865                         die "Does not point to a valid commit: $1"
866                 ;;
867         --)
868                 shift
869                 break
870                 ;;
871         esac
872         shift
873 done
875 test -z "$rebase_root" -a $# -ge 1 -a $# -le 2 ||
876 test ! -z "$rebase_root" -a $# -le 1 || usage
877 test -d "$dotest" &&
878         die "Interactive rebase already started"
880 git var GIT_COMMITTER_IDENT >/dev/null ||
881         die "You need to set your committer info first"
883 if test -z "$rebase_root"
884 then
885         upstream_arg="$1"
886         upstream=$(git rev-parse --verify "$1") || die "Invalid base"
887         test -z "$onto" && onto=$upstream
888         shift
889 else
890         upstream=
891         upstream_arg=--root
892         test -z "$onto" &&
893                 die "You must specify --onto when using --root"
894 fi
895 run_pre_rebase_hook "$upstream_arg" "$@"
897 comment_for_reflog start
899 require_clean_work_tree "rebase" "Please commit or stash them."
901 if test ! -z "$1"
902 then
903         output git checkout "$1" -- ||
904                 die "Could not checkout $1"
905 fi
907 head=$(git rev-parse --verify HEAD) || die "No HEAD?"
908 mkdir "$dotest" || die "Could not create temporary $dotest"
910 : > "$dotest"/interactive || die "Could not mark as interactive"
911 git symbolic-ref HEAD > "$dotest"/head-name 2> /dev/null ||
912         echo "detached HEAD" > "$dotest"/head-name
914 echo $head > "$dotest"/head
915 case "$rebase_root" in
916 '')
917         rm -f "$dotest"/rebase-root ;;
918 *)
919         : >"$dotest"/rebase-root ;;
920 esac
921 echo $onto > "$dotest"/onto
922 test -z "$strategy" || echo "$strategy" > "$dotest"/strategy
923 test t = "$verbose" && : > "$dotest"/verbose
924 if test t = "$preserve_merges"
925 then
926         if test -z "$rebase_root"
927         then
928                 mkdir "$rewritten" &&
929                 for c in $(git merge-base --all $head $upstream)
930                 do
931                         echo $onto > "$rewritten"/$c ||
932                                 die "Could not init rewritten commits"
933                 done
934         else
935                 mkdir "$rewritten" &&
936                 echo $onto > "$rewritten"/root ||
937                         die "Could not init rewritten commits"
938         fi
939         # No cherry-pick because our first pass is to determine
940         # parents to rewrite and skipping dropped commits would
941         # prematurely end our probe
942         merges_option=
943         first_after_upstream="$(git rev-list --reverse --first-parent $upstream..$head | head -n 1)"
944 else
945         merges_option="--no-merges --cherry-pick"
946 fi
948 shorthead=$(git rev-parse --short $head)
949 shortonto=$(git rev-parse --short $onto)
950 if test -z "$rebase_root"
951         # this is now equivalent to ! -z "$upstream"
952 then
953         shortupstream=$(git rev-parse --short $upstream)
954         revisions=$upstream...$head
955         shortrevisions=$shortupstream..$shorthead
956 else
957         revisions=$onto...$head
958         shortrevisions=$shorthead
959 fi
960 git rev-list $merges_option --pretty=oneline --abbrev-commit \
961         --abbrev=7 --reverse --left-right --topo-order \
962         $revisions | \
963         sed -n "s/^>//p" |
964 while read -r shortsha1 rest
965 do
966         if test t != "$preserve_merges"
967         then
968                 printf '%s\n' "pick $shortsha1 $rest" >> "$todo"
969         else
970                 sha1=$(git rev-parse $shortsha1)
971                 if test -z "$rebase_root"
972                 then
973                         preserve=t
974                         for p in $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)
975                         do
976                                 if test -f "$rewritten"/$p -a \( $p != $onto -o $sha1 = $first_after_upstream \)
977                                 then
978                                         preserve=f
979                                 fi
980                         done
981                 else
982                         preserve=f
983                 fi
984                 if test f = "$preserve"
985                 then
986                         touch "$rewritten"/$sha1
987                         printf '%s\n' "pick $shortsha1 $rest" >> "$todo"
988                 fi
989         fi
990 done
992 # Watch for commits that been dropped by --cherry-pick
993 if test t = "$preserve_merges"
994 then
995         mkdir "$dropped"
996         # Save all non-cherry-picked changes
997         git rev-list $revisions --left-right --cherry-pick | \
998                 sed -n "s/^>//p" > "$dotest"/not-cherry-picks
999         # Now all commits and note which ones are missing in
1000         # not-cherry-picks and hence being dropped
1001         git rev-list $revisions |
1002         while read rev
1003         do
1004                 if test -f "$rewritten"/$rev -a "$(sane_grep "$rev" "$dotest"/not-cherry-picks)" = ""
1005                 then
1006                         # Use -f2 because if rev-list is telling us this commit is
1007                         # not worthwhile, we don't want to track its multiple heads,
1008                         # just the history of its first-parent for others that will
1009                         # be rebasing on top of it
1010                         git rev-list --parents -1 $rev | cut -d' ' -s -f2 > "$dropped"/$rev
1011                         short=$(git rev-list -1 --abbrev-commit --abbrev=7 $rev)
1012                         sane_grep -v "^[a-z][a-z]* $short" <"$todo" > "${todo}2" ; mv "${todo}2" "$todo"
1013                         rm "$rewritten"/$rev
1014                 fi
1015         done
1016 fi
1018 test -s "$todo" || echo noop >> "$todo"
1019 test -n "$autosquash" && rearrange_squash "$todo"
1020 cat >> "$todo" << EOF
1022 # Rebase $shortrevisions onto $shortonto
1024 # Commands:
1025 #  p, pick = use commit
1026 #  r, reword = use commit, but edit the commit message
1027 #  e, edit = use commit, but stop for amending
1028 #  s, squash = use commit, but meld into previous commit
1029 #  f, fixup = like "squash", but discard this commit's log message
1030 #  x, exec = run command (the rest of the line) using shell
1032 # If you remove a line here THAT COMMIT WILL BE LOST.
1033 # However, if you remove everything, the rebase will be aborted.
1035 EOF
1037 has_action "$todo" ||
1038         die_abort "Nothing to do"
1040 cp "$todo" "$todo".backup
1041 git_editor "$todo" ||
1042         die_abort "Could not execute editor"
1044 has_action "$todo" ||
1045         die_abort "Nothing to do"
1047 test -d "$rewritten" || test -n "$force_rebase" || skip_unnecessary_picks
1049 output git checkout $onto || die_abort "could not detach HEAD"
1050 git update-ref ORIG_HEAD $head
1051 do_rest