sequencer: introduce new commands to reset the revision
[git.git] / git-rebase--interactive.sh
blobd6e8958dae4ae457d0aac7dd084d6bf975b075c5
1 # This shell script fragment is sourced by git-rebase to implement
2 # its interactive mode. "git rebase --interactive" makes it easy
3 # to fix up commits in the middle of a series and rearrange commits.
5 # Copyright (c) 2006 Johannes E. Schindelin
7 # The original idea comes from Eric W. Biederman, in
8 # https://public-inbox.org/git/m1odwkyuf5.fsf_-_@ebiederm.dsl.xmission.com/
10 # The file containing rebase commands, comments, and empty lines.
11 # This file is created by "git rebase -i" then edited by the user. As
12 # the lines are processed, they are removed from the front of this
13 # file and written to the tail of $done.
14 todo="$state_dir"/git-rebase-todo
16 # The rebase command lines that have already been processed. A line
17 # is moved here when it is first handled, before any associated user
18 # actions.
19 done="$state_dir"/done
21 # The commit message that is planned to be used for any changes that
22 # need to be committed following a user interaction.
23 msg="$state_dir"/message
25 # The file into which is accumulated the suggested commit message for
26 # squash/fixup commands. When the first of a series of squash/fixups
27 # is seen, the file is created and the commit message from the
28 # previous commit and from the first squash/fixup commit are written
29 # to it. The commit message for each subsequent squash/fixup commit
30 # is appended to the file as it is processed.
32 # The first line of the file is of the form
33 # # This is a combination of $count commits.
34 # where $count is the number of commits whose messages have been
35 # written to the file so far (including the initial "pick" commit).
36 # Each time that a commit message is processed, this line is read and
37 # updated. It is deleted just before the combined commit is made.
38 squash_msg="$state_dir"/message-squash
40 # If the current series of squash/fixups has not yet included a squash
41 # command, then this file exists and holds the commit message of the
42 # original "pick" commit. (If the series ends without a "squash"
43 # command, then this can be used as the commit message of the combined
44 # commit without opening the editor.)
45 fixup_msg="$state_dir"/message-fixup
47 # $rewritten is the name of a directory containing files for each
48 # commit that is reachable by at least one merge base of $head and
49 # $upstream. They are not necessarily rewritten, but their children
50 # might be. This ensures that commits on merged, but otherwise
51 # unrelated side branches are left alone. (Think "X" in the man page's
52 # example.)
53 rewritten="$state_dir"/rewritten
55 dropped="$state_dir"/dropped
57 end="$state_dir"/end
58 msgnum="$state_dir"/msgnum
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.
63 author_script="$state_dir"/author-script
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.
71 amend="$state_dir"/amend
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.
77 rewritten_list="$state_dir"/rewritten-list
78 rewritten_pending="$state_dir"/rewritten-pending
80 # Work around Git for Windows' Bash whose "read" does not strip CRLF
81 # and leaves CR at the end instead.
82 cr=$(printf "\015")
84 strategy_args=${strategy:+--strategy=$strategy}
85 test -n "$strategy_opts" &&
86 eval '
87 for strategy_opt in '"$strategy_opts"'
89 strategy_args="$strategy_args -X$(git rev-parse --sq-quote "${strategy_opt#--}")"
90 done
93 GIT_CHERRY_PICK_HELP="$resolvemsg"
94 export GIT_CHERRY_PICK_HELP
96 comment_char=$(git config --get core.commentchar 2>/dev/null)
97 case "$comment_char" in
98 '' | auto)
99 comment_char="#"
104 comment_char=$(echo "$comment_char" | cut -c1)
106 esac
108 warn () {
109 printf '%s\n' "$*" >&2
112 # Output the commit message for the specified commit.
113 commit_message () {
114 git cat-file commit "$1" | sed "1,/^$/d"
117 orig_reflog_action="$GIT_REFLOG_ACTION"
119 comment_for_reflog () {
120 case "$orig_reflog_action" in
121 ''|rebase*)
122 GIT_REFLOG_ACTION="rebase -i ($1)"
123 export GIT_REFLOG_ACTION
125 esac
128 last_count=
129 mark_action_done () {
130 sed -e 1q < "$todo" >> "$done"
131 sed -e 1d < "$todo" >> "$todo".new
132 mv -f "$todo".new "$todo"
133 new_count=$(( $(git stripspace --strip-comments <"$done" | wc -l) ))
134 echo $new_count >"$msgnum"
135 total=$(($new_count + $(git stripspace --strip-comments <"$todo" | wc -l)))
136 echo $total >"$end"
137 if test "$last_count" != "$new_count"
138 then
139 last_count=$new_count
140 eval_gettext "Rebasing (\$new_count/\$total)"; printf "\r"
141 test -z "$verbose" || echo
145 # Put the last action marked done at the beginning of the todo list
146 # again. If there has not been an action marked done yet, leave the list of
147 # items on the todo list unchanged.
148 reschedule_last_action () {
149 tail -n 1 "$done" | cat - "$todo" >"$todo".new
150 sed -e \$d <"$done" >"$done".new
151 mv -f "$todo".new "$todo"
152 mv -f "$done".new "$done"
155 append_todo_help () {
156 gettext "
157 Commands:
158 p, pick <commit> = use commit
159 r, reword <commit> = use commit, but edit the commit message
160 e, edit <commit> = use commit, but stop for amending
161 s, squash <commit> = use commit, but meld into previous commit
162 f, fixup <commit> = like \"squash\", but discard this commit's log message
163 x, exec <commit> = run command (the rest of the line) using shell
164 d, drop <commit> = remove commit
165 l, label <label> = label current HEAD with a name
166 t, reset <label> = reset HEAD to a label
168 These lines can be re-ordered; they are executed from top to bottom.
169 " | git stripspace --comment-lines >>"$todo"
171 if test $(get_missing_commit_check_level) = error
172 then
173 gettext "
174 Do not remove any line. Use 'drop' explicitly to remove a commit.
175 " | git stripspace --comment-lines >>"$todo"
176 else
177 gettext "
178 If you remove a line here THAT COMMIT WILL BE LOST.
179 " | git stripspace --comment-lines >>"$todo"
183 make_patch () {
184 sha1_and_parents="$(git rev-list --parents -1 "$1")"
185 case "$sha1_and_parents" in
186 ?*' '?*' '?*)
187 git diff --cc $sha1_and_parents
189 ?*' '?*)
190 git diff-tree -p "$1^!"
193 echo "Root commit"
195 esac > "$state_dir"/patch
196 test -f "$msg" ||
197 commit_message "$1" > "$msg"
198 test -f "$author_script" ||
199 get_author_ident_from_commit "$1" > "$author_script"
202 die_with_patch () {
203 echo "$1" > "$state_dir"/stopped-sha
204 git update-ref REBASE_HEAD "$1"
205 make_patch "$1"
206 die "$2"
209 exit_with_patch () {
210 echo "$1" > "$state_dir"/stopped-sha
211 git update-ref REBASE_HEAD "$1"
212 make_patch $1
213 git rev-parse --verify HEAD > "$amend"
214 gpg_sign_opt_quoted=${gpg_sign_opt:+$(git rev-parse --sq-quote "$gpg_sign_opt")}
215 warn "$(eval_gettext "\
216 You can amend the commit now, with
218 git commit --amend \$gpg_sign_opt_quoted
220 Once you are satisfied with your changes, run
222 git rebase --continue")"
223 warn
224 exit $2
227 die_abort () {
228 apply_autostash
229 rm -rf "$state_dir"
230 die "$1"
233 has_action () {
234 test -n "$(git stripspace --strip-comments <"$1")"
237 is_empty_commit() {
238 tree=$(git rev-parse -q --verify "$1"^{tree} 2>/dev/null) || {
239 sha1=$1
240 die "$(eval_gettext "\$sha1: not a commit that can be picked")"
242 ptree=$(git rev-parse -q --verify "$1"^^{tree} 2>/dev/null) ||
243 ptree=4b825dc642cb6eb9a060e54bf8d69288fbee4904
244 test "$tree" = "$ptree"
247 is_merge_commit()
249 git rev-parse --verify --quiet "$1"^2 >/dev/null 2>&1
252 # Run command with GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
253 # GIT_AUTHOR_DATE exported from the current environment.
254 do_with_author () {
256 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
257 "$@"
261 git_sequence_editor () {
262 if test -z "$GIT_SEQUENCE_EDITOR"
263 then
264 GIT_SEQUENCE_EDITOR="$(git config sequence.editor)"
265 if [ -z "$GIT_SEQUENCE_EDITOR" ]
266 then
267 GIT_SEQUENCE_EDITOR="$(git var GIT_EDITOR)" || return $?
271 eval "$GIT_SEQUENCE_EDITOR" '"$@"'
274 pick_one () {
275 ff=--ff
277 case "$1" in -n) sha1=$2; ff= ;; *) sha1=$1 ;; esac
278 case "$force_rebase" in '') ;; ?*) ff= ;; esac
279 output git rev-parse --verify $sha1 || die "$(eval_gettext "Invalid commit name: \$sha1")"
281 if is_empty_commit "$sha1"
282 then
283 empty_args="--allow-empty"
286 test -d "$rewritten" &&
287 pick_one_preserving_merges "$@" && return
288 output eval git cherry-pick $allow_rerere_autoupdate $allow_empty_message \
289 ${gpg_sign_opt:+$(git rev-parse --sq-quote "$gpg_sign_opt")} \
290 $signoff "$strategy_args" $empty_args $ff "$@"
292 # If cherry-pick dies it leaves the to-be-picked commit unrecorded. Reschedule
293 # previous task so this commit is not lost.
294 ret=$?
295 case "$ret" in [01]) ;; *) reschedule_last_action ;; esac
296 return $ret
299 pick_one_preserving_merges () {
300 fast_forward=t
301 case "$1" in
303 fast_forward=f
304 sha1=$2
307 sha1=$1
309 esac
310 sha1=$(git rev-parse $sha1)
312 if test -f "$state_dir"/current-commit && test "$fast_forward" = t
313 then
314 while read current_commit
316 git rev-parse HEAD > "$rewritten"/$current_commit
317 done <"$state_dir"/current-commit
318 rm "$state_dir"/current-commit ||
319 die "$(gettext "Cannot write current commit's replacement sha1")"
322 echo $sha1 >> "$state_dir"/current-commit
324 # rewrite parents; if none were rewritten, we can fast-forward.
325 new_parents=
326 pend=" $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)"
327 if test "$pend" = " "
328 then
329 pend=" root"
331 while [ "$pend" != "" ]
333 p=$(expr "$pend" : ' \([^ ]*\)')
334 pend="${pend# $p}"
336 if test -f "$rewritten"/$p
337 then
338 new_p=$(cat "$rewritten"/$p)
340 # If the todo reordered commits, and our parent is marked for
341 # rewriting, but hasn't been gotten to yet, assume the user meant to
342 # drop it on top of the current HEAD
343 if test -z "$new_p"
344 then
345 new_p=$(git rev-parse HEAD)
348 test $p != $new_p && fast_forward=f
349 case "$new_parents" in
350 *$new_p*)
351 ;; # do nothing; that parent is already there
353 new_parents="$new_parents $new_p"
355 esac
356 else
357 if test -f "$dropped"/$p
358 then
359 fast_forward=f
360 replacement="$(cat "$dropped"/$p)"
361 test -z "$replacement" && replacement=root
362 pend=" $replacement$pend"
363 else
364 new_parents="$new_parents $p"
367 done
368 case $fast_forward in
370 output warn "$(eval_gettext "Fast-forward to \$sha1")"
371 output git reset --hard $sha1 ||
372 die "$(eval_gettext "Cannot fast-forward to \$sha1")"
375 first_parent=$(expr "$new_parents" : ' \([^ ]*\)')
377 if [ "$1" != "-n" ]
378 then
379 # detach HEAD to current parent
380 output git checkout $first_parent 2> /dev/null ||
381 die "$(eval_gettext "Cannot move HEAD to \$first_parent")"
384 case "$new_parents" in
385 ' '*' '*)
386 test "a$1" = a-n && die "$(eval_gettext "Refusing to squash a merge: \$sha1")"
388 # redo merge
389 author_script_content=$(get_author_ident_from_commit $sha1)
390 eval "$author_script_content"
391 msg_content="$(commit_message $sha1)"
392 # No point in merging the first parent, that's HEAD
393 new_parents=${new_parents# $first_parent}
394 merge_args="--no-log --no-ff"
395 if ! do_with_author output eval \
396 git merge ${gpg_sign_opt:+$(git rev-parse \
397 --sq-quote "$gpg_sign_opt")} \
398 $allow_rerere_autoupdate "$merge_args" \
399 "$strategy_args" \
400 -m "$(git rev-parse --sq-quote "$msg_content")" \
401 "$new_parents"
402 then
403 printf "%s\n" "$msg_content" > "$GIT_DIR"/MERGE_MSG
404 die_with_patch $sha1 "$(eval_gettext "Error redoing merge \$sha1")"
406 echo "$sha1 $(git rev-parse HEAD^0)" >> "$rewritten_list"
409 output eval git cherry-pick $allow_rerere_autoupdate \
410 $allow_empty_message \
411 ${gpg_sign_opt:+$(git rev-parse --sq-quote "$gpg_sign_opt")} \
412 "$strategy_args" "$@" ||
413 die_with_patch $sha1 "$(eval_gettext "Could not pick \$sha1")"
415 esac
417 esac
420 this_nth_commit_message () {
421 n=$1
422 eval_gettext "This is the commit message #\${n}:"
425 skip_nth_commit_message () {
426 n=$1
427 eval_gettext "The commit message #\${n} will be skipped:"
430 update_squash_messages () {
431 if test -f "$squash_msg"; then
432 mv "$squash_msg" "$squash_msg".bak || exit
433 count=$(($(sed -n \
434 -e "1s/^$comment_char[^0-9]*\([0-9][0-9]*\).*/\1/p" \
435 -e "q" < "$squash_msg".bak)+1))
437 printf '%s\n' "$comment_char $(eval_ngettext \
438 "This is a combination of \$count commit." \
439 "This is a combination of \$count commits." \
440 $count)"
441 sed -e 1d -e '2,/^./{
442 /^$/d
443 }' <"$squash_msg".bak
444 } >"$squash_msg"
445 else
446 commit_message HEAD >"$fixup_msg" ||
447 die "$(eval_gettext "Cannot write \$fixup_msg")"
448 count=2
450 printf '%s\n' "$comment_char $(gettext "This is a combination of 2 commits.")"
451 printf '%s\n' "$comment_char $(gettext "This is the 1st commit message:")"
452 echo
453 cat "$fixup_msg"
454 } >"$squash_msg"
456 case $1 in
457 squash)
458 rm -f "$fixup_msg"
459 echo
460 printf '%s\n' "$comment_char $(this_nth_commit_message $count)"
461 echo
462 commit_message $2
464 fixup)
465 echo
466 printf '%s\n' "$comment_char $(skip_nth_commit_message $count)"
467 echo
468 # Change the space after the comment character to TAB:
469 commit_message $2 | git stripspace --comment-lines | sed -e 's/ / /'
471 esac >>"$squash_msg"
474 peek_next_command () {
475 git stripspace --strip-comments <"$todo" | sed -n -e 's/ .*//p' -e q
478 # A squash/fixup has failed. Prepare the long version of the squash
479 # commit message, then die_with_patch. This code path requires the
480 # user to edit the combined commit message for all commits that have
481 # been squashed/fixedup so far. So also erase the old squash
482 # messages, effectively causing the combined commit to be used as the
483 # new basis for any further squash/fixups. Args: sha1 rest
484 die_failed_squash() {
485 sha1=$1
486 rest=$2
487 mv "$squash_msg" "$msg" || exit
488 rm -f "$fixup_msg"
489 cp "$msg" "$GIT_DIR"/MERGE_MSG || exit
490 warn
491 warn "$(eval_gettext "Could not apply \$sha1... \$rest")"
492 die_with_patch $sha1 ""
495 flush_rewritten_pending() {
496 test -s "$rewritten_pending" || return
497 newsha1="$(git rev-parse HEAD^0)"
498 sed "s/$/ $newsha1/" < "$rewritten_pending" >> "$rewritten_list"
499 rm -f "$rewritten_pending"
502 record_in_rewritten() {
503 oldsha1="$(git rev-parse $1)"
504 echo "$oldsha1" >> "$rewritten_pending"
506 case "$(peek_next_command)" in
507 squash|s|fixup|f)
510 flush_rewritten_pending
512 esac
515 do_pick () {
516 sha1=$1
517 rest=$2
518 if test "$(git rev-parse HEAD)" = "$squash_onto"
519 then
520 # Set the correct commit message and author info on the
521 # sentinel root before cherry-picking the original changes
522 # without committing (-n). Finally, update the sentinel again
523 # to include these changes. If the cherry-pick results in a
524 # conflict, this means our behaviour is similar to a standard
525 # failed cherry-pick during rebase, with a dirty index to
526 # resolve before manually running git commit --amend then git
527 # rebase --continue.
528 git commit --allow-empty --allow-empty-message --amend \
529 --no-post-rewrite -n -q -C $sha1 $signoff &&
530 pick_one -n $sha1 &&
531 git commit --allow-empty --allow-empty-message \
532 --amend --no-post-rewrite -n -q -C $sha1 $signoff \
533 ${gpg_sign_opt:+"$gpg_sign_opt"} ||
534 die_with_patch $sha1 "$(eval_gettext "Could not apply \$sha1... \$rest")"
535 else
536 pick_one $sha1 ||
537 die_with_patch $sha1 "$(eval_gettext "Could not apply \$sha1... \$rest")"
541 do_next () {
542 rm -f "$msg" "$author_script" "$amend" "$state_dir"/stopped-sha || exit
543 read -r command sha1 rest < "$todo"
544 case "$command" in
545 "$comment_char"*|''|noop|drop|d)
546 mark_action_done
548 "$cr")
549 # Work around CR left by "read" (e.g. with Git for Windows' Bash).
550 mark_action_done
552 pick|p)
553 comment_for_reflog pick
555 mark_action_done
556 do_pick $sha1 "$rest"
557 record_in_rewritten $sha1
559 reword|r)
560 comment_for_reflog reword
562 mark_action_done
563 do_pick $sha1 "$rest"
564 git commit --amend --no-post-rewrite ${gpg_sign_opt:+"$gpg_sign_opt"} \
565 $allow_empty_message || {
566 warn "$(eval_gettext "\
567 Could not amend commit after successfully picking \$sha1... \$rest
568 This is most likely due to an empty commit message, or the pre-commit hook
569 failed. If the pre-commit hook failed, you may need to resolve the issue before
570 you are able to reword the commit.")"
571 exit_with_patch $sha1 1
573 record_in_rewritten $sha1
575 edit|e)
576 comment_for_reflog edit
578 mark_action_done
579 do_pick $sha1 "$rest"
580 sha1_abbrev=$(git rev-parse --short $sha1)
581 warn "$(eval_gettext "Stopped at \$sha1_abbrev... \$rest")"
582 exit_with_patch $sha1 0
584 squash|s|fixup|f)
585 case "$command" in
586 squash|s)
587 squash_style=squash
589 fixup|f)
590 squash_style=fixup
592 esac
593 comment_for_reflog $squash_style
595 test -f "$done" && has_action "$done" ||
596 die "$(eval_gettext "Cannot '\$squash_style' without a previous commit")"
598 mark_action_done
599 update_squash_messages $squash_style $sha1
600 author_script_content=$(get_author_ident_from_commit HEAD)
601 echo "$author_script_content" > "$author_script"
602 eval "$author_script_content"
603 if ! pick_one -n $sha1
604 then
605 git rev-parse --verify HEAD >"$amend"
606 die_failed_squash $sha1 "$rest"
608 case "$(peek_next_command)" in
609 squash|s|fixup|f)
610 # This is an intermediate commit; its message will only be
611 # used in case of trouble. So use the long version:
612 do_with_author output git commit --amend --no-verify -F "$squash_msg" \
613 ${gpg_sign_opt:+"$gpg_sign_opt"} $allow_empty_message ||
614 die_failed_squash $sha1 "$rest"
617 # This is the final command of this squash/fixup group
618 if test -f "$fixup_msg"
619 then
620 do_with_author git commit --amend --no-verify -F "$fixup_msg" \
621 ${gpg_sign_opt:+"$gpg_sign_opt"} $allow_empty_message ||
622 die_failed_squash $sha1 "$rest"
623 else
624 cp "$squash_msg" "$GIT_DIR"/SQUASH_MSG || exit
625 rm -f "$GIT_DIR"/MERGE_MSG
626 do_with_author git commit --amend --no-verify -F "$GIT_DIR"/SQUASH_MSG -e \
627 ${gpg_sign_opt:+"$gpg_sign_opt"} $allow_empty_message ||
628 die_failed_squash $sha1 "$rest"
630 rm -f "$squash_msg" "$fixup_msg"
632 esac
633 record_in_rewritten $sha1
635 x|"exec")
636 read -r command rest < "$todo"
637 mark_action_done
638 eval_gettextln "Executing: \$rest"
639 "${SHELL:-@SHELL_PATH@}" -c "$rest" # Actual execution
640 status=$?
641 # Run in subshell because require_clean_work_tree can die.
642 dirty=f
643 (require_clean_work_tree "rebase" 2>/dev/null) || dirty=t
644 if test "$status" -ne 0
645 then
646 warn "$(eval_gettext "Execution failed: \$rest")"
647 test "$dirty" = f ||
648 warn "$(gettext "and made changes to the index and/or the working tree")"
650 warn "$(gettext "\
651 You can fix the problem, and then run
653 git rebase --continue")"
654 warn
655 if test $status -eq 127 # command not found
656 then
657 status=1
659 exit "$status"
660 elif test "$dirty" = t
661 then
662 # TRANSLATORS: after these lines is a command to be issued by the user
663 warn "$(eval_gettext "\
664 Execution succeeded: \$rest
665 but left changes to the index and/or the working tree
666 Commit or stash your changes, and then run
668 git rebase --continue")"
669 warn
670 exit 1
674 warn "$(eval_gettext "Unknown command: \$command \$sha1 \$rest")"
675 fixtodo="$(gettext "Please fix this using 'git rebase --edit-todo'.")"
676 if git rev-parse --verify -q "$sha1" >/dev/null
677 then
678 die_with_patch $sha1 "$fixtodo"
679 else
680 die "$fixtodo"
683 esac
684 test -s "$todo" && return
686 comment_for_reflog finish &&
687 newhead=$(git rev-parse HEAD) &&
688 case $head_name in
689 refs/*)
690 message="$GIT_REFLOG_ACTION: $head_name onto $onto" &&
691 git update-ref -m "$message" $head_name $newhead $orig_head &&
692 git symbolic-ref \
693 -m "$GIT_REFLOG_ACTION: returning to $head_name" \
694 HEAD $head_name
696 esac && {
697 test ! -f "$state_dir"/verbose ||
698 git diff-tree --stat $orig_head..HEAD
699 } &&
701 test -s "$rewritten_list" &&
702 git notes copy --for-rewrite=rebase < "$rewritten_list" ||
703 true # we don't care if this copying failed
704 } &&
705 hook="$(git rev-parse --git-path hooks/post-rewrite)"
706 if test -x "$hook" && test -s "$rewritten_list"; then
707 "$hook" rebase < "$rewritten_list"
708 true # we don't care if this hook failed
709 fi &&
710 warn "$(eval_gettext "Successfully rebased and updated \$head_name.")"
712 return 1 # not failure; just to break the do_rest loop
715 # can only return 0, when the infinite loop breaks
716 do_rest () {
717 while :
719 do_next || break
720 done
723 expand_todo_ids() {
724 git rebase--helper --expand-ids
727 collapse_todo_ids() {
728 git rebase--helper --shorten-ids
731 # Switch to the branch in $into and notify it in the reflog
732 checkout_onto () {
733 GIT_REFLOG_ACTION="$GIT_REFLOG_ACTION: checkout $onto_name"
734 output git checkout $onto || die_abort "$(gettext "could not detach HEAD")"
735 git update-ref ORIG_HEAD $orig_head
738 get_missing_commit_check_level () {
739 check_level=$(git config --get rebase.missingCommitsCheck)
740 check_level=${check_level:-ignore}
741 # Don't be case sensitive
742 printf '%s' "$check_level" | tr 'A-Z' 'a-z'
745 # Initiate an action. If the cannot be any
746 # further action it may exec a command
747 # or exit and not return.
749 # TODO: Consider a cleaner return model so it
750 # never exits and always return 0 if process
751 # is complete.
753 # Parameter 1 is the action to initiate.
755 # Returns 0 if the action was able to complete
756 # and if 1 if further processing is required.
757 initiate_action () {
758 case "$1" in
759 continue)
760 if test ! -d "$rewritten"
761 then
762 exec git rebase--helper ${force_rebase:+--no-ff} $allow_empty_message \
763 --continue
765 # do we have anything to commit?
766 if git diff-index --cached --quiet HEAD --
767 then
768 # Nothing to commit -- skip this commit
770 test ! -f "$GIT_DIR"/CHERRY_PICK_HEAD ||
771 rm "$GIT_DIR"/CHERRY_PICK_HEAD ||
772 die "$(gettext "Could not remove CHERRY_PICK_HEAD")"
773 else
774 if ! test -f "$author_script"
775 then
776 gpg_sign_opt_quoted=${gpg_sign_opt:+$(git rev-parse --sq-quote "$gpg_sign_opt")}
777 die "$(eval_gettext "\
778 You have staged changes in your working tree.
779 If these changes are meant to be
780 squashed into the previous commit, run:
782 git commit --amend \$gpg_sign_opt_quoted
784 If they are meant to go into a new commit, run:
786 git commit \$gpg_sign_opt_quoted
788 In both cases, once you're done, continue with:
790 git rebase --continue
793 . "$author_script" ||
794 die "$(gettext "Error trying to find the author identity to amend commit")"
795 if test -f "$amend"
796 then
797 current_head=$(git rev-parse --verify HEAD)
798 test "$current_head" = $(cat "$amend") ||
799 die "$(gettext "\
800 You have uncommitted changes in your working tree. Please commit them
801 first and then run 'git rebase --continue' again.")"
802 do_with_author git commit --amend --no-verify -F "$msg" -e \
803 ${gpg_sign_opt:+"$gpg_sign_opt"} $allow_empty_message ||
804 die "$(gettext "Could not commit staged changes.")"
805 else
806 do_with_author git commit --no-verify -F "$msg" -e \
807 ${gpg_sign_opt:+"$gpg_sign_opt"} $allow_empty_message ||
808 die "$(gettext "Could not commit staged changes.")"
812 if test -r "$state_dir"/stopped-sha
813 then
814 record_in_rewritten "$(cat "$state_dir"/stopped-sha)"
817 require_clean_work_tree "rebase"
818 do_rest
819 return 0
821 skip)
822 git rerere clear
824 if test ! -d "$rewritten"
825 then
826 exec git rebase--helper ${force_rebase:+--no-ff} $allow_empty_message \
827 --continue
829 do_rest
830 return 0
832 edit-todo)
833 git stripspace --strip-comments <"$todo" >"$todo".new
834 mv -f "$todo".new "$todo"
835 collapse_todo_ids
836 append_todo_help
837 gettext "
838 You are editing the todo file of an ongoing interactive rebase.
839 To continue rebase after editing, run:
840 git rebase --continue
842 " | git stripspace --comment-lines >>"$todo"
844 git_sequence_editor "$todo" ||
845 die "$(gettext "Could not execute editor")"
846 expand_todo_ids
848 exit
850 show-current-patch)
851 exec git show REBASE_HEAD --
854 return 1 # continue
856 esac
859 setup_reflog_action () {
860 comment_for_reflog start
862 if test ! -z "$switch_to"
863 then
864 GIT_REFLOG_ACTION="$GIT_REFLOG_ACTION: checkout $switch_to"
865 output git checkout "$switch_to" -- ||
866 die "$(eval_gettext "Could not checkout \$switch_to")"
868 comment_for_reflog start
872 init_basic_state () {
873 orig_head=$(git rev-parse --verify HEAD) || die "$(gettext "No HEAD?")"
874 mkdir -p "$state_dir" || die "$(eval_gettext "Could not create temporary \$state_dir")"
875 rm -f "$(git rev-parse --git-path REBASE_HEAD)"
877 : > "$state_dir"/interactive || die "$(gettext "Could not mark as interactive")"
878 write_basic_state
881 init_revisions_and_shortrevisions () {
882 shorthead=$(git rev-parse --short $orig_head)
883 shortonto=$(git rev-parse --short $onto)
884 if test -z "$rebase_root"
885 # this is now equivalent to ! -z "$upstream"
886 then
887 shortupstream=$(git rev-parse --short $upstream)
888 revisions=$upstream...$orig_head
889 shortrevisions=$shortupstream..$shorthead
890 else
891 revisions=$onto...$orig_head
892 shortrevisions=$shorthead
896 complete_action() {
897 test -s "$todo" || echo noop >> "$todo"
898 test -z "$autosquash" || git rebase--helper --rearrange-squash || exit
899 test -n "$cmd" && git rebase--helper --add-exec-commands "$cmd"
901 todocount=$(git stripspace --strip-comments <"$todo" | wc -l)
902 todocount=${todocount##* }
904 cat >>"$todo" <<EOF
906 $comment_char $(eval_ngettext \
907 "Rebase \$shortrevisions onto \$shortonto (\$todocount command)" \
908 "Rebase \$shortrevisions onto \$shortonto (\$todocount commands)" \
909 "$todocount")
911 append_todo_help
912 gettext "
913 However, if you remove everything, the rebase will be aborted.
915 " | git stripspace --comment-lines >>"$todo"
917 if test -z "$keep_empty"
918 then
919 printf '%s\n' "$comment_char $(gettext "Note that empty commits are commented out")" >>"$todo"
923 has_action "$todo" ||
924 return 2
926 cp "$todo" "$todo".backup
927 collapse_todo_ids
928 git_sequence_editor "$todo" ||
929 die_abort "$(gettext "Could not execute editor")"
931 has_action "$todo" ||
932 return 2
934 git rebase--helper --check-todo-list || {
935 ret=$?
936 checkout_onto
937 exit $ret
940 expand_todo_ids
942 test -d "$rewritten" || test -n "$force_rebase" ||
943 onto="$(git rebase--helper --skip-unnecessary-picks)" ||
944 die "Could not skip unnecessary pick commands"
946 checkout_onto
947 if test -z "$rebase_root" && test ! -d "$rewritten"
948 then
949 require_clean_work_tree "rebase"
950 exec git rebase--helper ${force_rebase:+--no-ff} $allow_empty_message \
951 --continue
953 do_rest
956 git_rebase__interactive () {
957 initiate_action "$action"
958 ret=$?
959 if test $ret = 0; then
960 return 0
963 setup_reflog_action
964 init_basic_state
966 init_revisions_and_shortrevisions
968 git rebase--helper --make-script ${keep_empty:+--keep-empty} \
969 $revisions ${restrict_revision+^$restrict_revision} >"$todo" ||
970 die "$(gettext "Could not generate todo list")"
972 complete_action
975 git_rebase__interactive__preserve_merges () {
976 initiate_action "$action"
977 ret=$?
978 if test $ret = 0; then
979 return 0
982 setup_reflog_action
983 init_basic_state
985 if test -z "$rebase_root"
986 then
987 mkdir "$rewritten" &&
988 for c in $(git merge-base --all $orig_head $upstream)
990 echo $onto > "$rewritten"/$c ||
991 die "$(gettext "Could not init rewritten commits")"
992 done
993 else
994 mkdir "$rewritten" &&
995 echo $onto > "$rewritten"/root ||
996 die "$(gettext "Could not init rewritten commits")"
999 init_revisions_and_shortrevisions
1001 format=$(git config --get rebase.instructionFormat)
1002 # the 'rev-list .. | sed' requires %m to parse; the instruction requires %H to parse
1003 git rev-list --format="%m%H ${format:-%s}" \
1004 --reverse --left-right --topo-order \
1005 $revisions ${restrict_revision+^$restrict_revision} | \
1006 sed -n "s/^>//p" |
1007 while read -r sha1 rest
1009 if test -z "$keep_empty" && is_empty_commit $sha1 && ! is_merge_commit $sha1
1010 then
1011 comment_out="$comment_char "
1012 else
1013 comment_out=
1016 if test -z "$rebase_root"
1017 then
1018 preserve=t
1019 for p in $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)
1021 if test -f "$rewritten"/$p
1022 then
1023 preserve=f
1025 done
1026 else
1027 preserve=f
1029 if test f = "$preserve"
1030 then
1031 touch "$rewritten"/$sha1
1032 printf '%s\n' "${comment_out}pick $sha1 $rest" >>"$todo"
1034 done
1036 # Watch for commits that been dropped by --cherry-pick
1037 mkdir "$dropped"
1038 # Save all non-cherry-picked changes
1039 git rev-list $revisions --left-right --cherry-pick | \
1040 sed -n "s/^>//p" > "$state_dir"/not-cherry-picks
1041 # Now all commits and note which ones are missing in
1042 # not-cherry-picks and hence being dropped
1043 git rev-list $revisions |
1044 while read rev
1046 if test -f "$rewritten"/$rev &&
1047 ! sane_grep "$rev" "$state_dir"/not-cherry-picks >/dev/null
1048 then
1049 # Use -f2 because if rev-list is telling us this commit is
1050 # not worthwhile, we don't want to track its multiple heads,
1051 # just the history of its first-parent for others that will
1052 # be rebasing on top of it
1053 git rev-list --parents -1 $rev | cut -d' ' -s -f2 > "$dropped"/$rev
1054 sha1=$(git rev-list -1 $rev)
1055 sane_grep -v "^[a-z][a-z]* $sha1" <"$todo" > "${todo}2" ; mv "${todo}2" "$todo"
1056 rm "$rewritten"/$rev
1058 done
1060 complete_action