]> git.ipfire.org Git - thirdparty/git.git/blame - git-rebase--interactive.sh
technical-docs: document hash API
[thirdparty/git.git] / git-rebase--interactive.sh
CommitLineData
1b1dce4b
JS
1#!/bin/sh
2#
3# Copyright (c) 2006 Johannes E. Schindelin
4
5# SHORT DESCRIPTION
6#
7# This script makes it easy to fix up commits in the middle of a series,
8# and rearrange commits.
9#
10# The original idea comes from Eric W. Biederman, in
11# http://article.gmane.org/gmane.comp.version-control.git/22407
12
7970aaf0
SB
13OPTIONS_KEEPDASHDASH=
14OPTIONS_SPEC="\
15git-rebase [-i] [options] [--] <upstream> [<branch>]
16git-rebase [-i] (--continue | --abort | --skip)
17--
18 Available options are
19v,verbose display a diffstat of what changed upstream
20onto= rebase onto given branch instead of upstream
21p,preserve-merges try to recreate merges instead of ignoring them
22s,strategy= use the given merge strategy
23m,merge always used (no-op)
24i,interactive always used (no-op)
25 Actions:
26continue continue rebasing process
27abort abort rebasing process and restore original branch
28skip skip current patch and continue rebasing process
c4427656 29no-verify override pre-rebase hook from stopping the operation
d911d146 30root rebase all reachable commmits up to the root(s)
7970aaf0 31"
1b1dce4b
JS
32
33. git-sh-setup
34require_work_tree
35
28ed6e7b 36DOTEST="$GIT_DIR/rebase-merge"
c22486c9 37TODO="$DOTEST"/git-rebase-todo
1b1dce4b 38DONE="$DOTEST"/done
6368f3f8
JS
39MSG="$DOTEST"/message
40SQUASH_MSG="$DOTEST"/message-squash
f09c9b8c 41REWRITTEN="$DOTEST"/rewritten
faae853c 42DROPPED="$DOTEST"/dropped
f09c9b8c 43PRESERVE_MERGES=
1b1dce4b 44STRATEGY=
7970aaf0 45ONTO=
1b1dce4b 46VERBOSE=
c4427656 47OK_TO_SKIP_PRE_REBASE=
d911d146 48REBASE_ROOT=
1b1dce4b 49
804c7174
WC
50GIT_CHERRY_PICK_HELP=" After resolving the conflicts,
51mark the corrected paths with 'git add <paths>', and
52run 'git rebase --continue'"
53export GIT_CHERRY_PICK_HELP
54
1b1dce4b
JS
55warn () {
56 echo "$*" >&2
57}
58
dfa49f33
JS
59output () {
60 case "$VERBOSE" in
61 '')
5166810b 62 output=$("$@" 2>&1 )
dfa49f33 63 status=$?
5166810b 64 test $status != 0 && printf "%s\n" "$output"
dfa49f33 65 return $status
376ccb8c 66 ;;
dfa49f33
JS
67 *)
68 "$@"
376ccb8c 69 ;;
dfa49f33
JS
70 esac
71}
72
d70b4a8f 73run_pre_rebase_hook () {
c4427656
NS
74 if test -z "$OK_TO_SKIP_PRE_REBASE" &&
75 test -x "$GIT_DIR/hooks/pre-rebase"
d70b4a8f
NS
76 then
77 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
78 echo >&2 "The pre-rebase hook refused to rebase."
79 exit 1
80 }
81 fi
82}
83
1b1dce4b
JS
84require_clean_work_tree () {
85 # test if working tree is dirty
86 git rev-parse --verify HEAD > /dev/null &&
6848d58c
JS
87 git update-index --ignore-submodules --refresh &&
88 git diff-files --quiet --ignore-submodules &&
89 git diff-index --cached --quiet HEAD --ignore-submodules -- ||
1b1dce4b
JS
90 die "Working tree is dirty"
91}
92
93ORIG_REFLOG_ACTION="$GIT_REFLOG_ACTION"
94
95comment_for_reflog () {
96 case "$ORIG_REFLOG_ACTION" in
97 ''|rebase*)
98 GIT_REFLOG_ACTION="rebase -i ($1)"
99 export GIT_REFLOG_ACTION
376ccb8c 100 ;;
1b1dce4b
JS
101 esac
102}
103
4e673877 104last_count=
1b1dce4b
JS
105mark_action_done () {
106 sed -e 1q < "$TODO" >> "$DONE"
107 sed -e 1d < "$TODO" >> "$TODO".new
108 mv -f "$TODO".new "$TODO"
e1622bfc
JH
109 count=$(sane_grep -c '^[^#]' < "$DONE")
110 total=$(($count+$(sane_grep -c '^[^#]' < "$TODO")))
4e673877
JH
111 if test "$last_count" != "$count"
112 then
113 last_count=$count
114 printf "Rebasing (%d/%d)\r" $count $total
115 test -z "$VERBOSE" || echo
116 fi
1b1dce4b
JS
117}
118
119make_patch () {
4fb1a19d
JS
120 sha1_and_parents="$(git rev-list --parents -1 "$1")"
121 case "$sha1_and_parents" in
122 ?*' '?*' '?*)
123 git diff --cc $sha1_and_parents
124 ;;
125 ?*' '?*)
126 git diff-tree -p "$1^!"
127 ;;
128 *)
129 echo "Root commit"
130 ;;
131 esac > "$DOTEST"/patch
be6ff208
JS
132 test -f "$DOTEST"/message ||
133 git cat-file commit "$1" | sed "1,/^$/d" > "$DOTEST"/message
134 test -f "$DOTEST"/author-script ||
135 get_author_ident_from_commit "$1" > "$DOTEST"/author-script
1b1dce4b
JS
136}
137
138die_with_patch () {
139 make_patch "$1"
ecfe72ff 140 git rerere
1b1dce4b
JS
141 die "$2"
142}
143
c54b7817
JS
144die_abort () {
145 rm -rf "$DOTEST"
146 die "$1"
147}
148
376ccb8c 149has_action () {
e1622bfc 150 sane_grep '^[^#]' "$1" >/dev/null
376ccb8c
JS
151}
152
1b1dce4b 153pick_one () {
1d25c8cf
JS
154 no_ff=
155 case "$1" in -n) sha1=$2; no_ff=t ;; *) sha1=$1 ;; esac
dfa49f33 156 output git rev-parse --verify $sha1 || die "Invalid commit name: $sha1"
f09c9b8c
JS
157 test -d "$REWRITTEN" &&
158 pick_one_preserving_merges "$@" && return
d911d146
TR
159 if test ! -z "$REBASE_ROOT"
160 then
161 output git cherry-pick "$@"
162 return
163 fi
376ccb8c
JS
164 parent_sha1=$(git rev-parse --verify $sha1^) ||
165 die "Could not get the parent of $sha1"
1b1dce4b 166 current_sha1=$(git rev-parse --verify HEAD)
2858028e 167 if test "$no_ff$current_sha1" = "$parent_sha1"; then
dfa49f33
JS
168 output git reset --hard $sha1
169 test "a$1" = a-n && output git reset --soft $current_sha1
1b1dce4b 170 sha1=$(git rev-parse --short $sha1)
dfa49f33 171 output warn Fast forward to $sha1
1b1dce4b 172 else
2a9c53e0 173 output git cherry-pick "$@"
1b1dce4b
JS
174 fi
175}
176
f09c9b8c 177pick_one_preserving_merges () {
71d9451e
TR
178 fast_forward=t
179 case "$1" in
180 -n)
181 fast_forward=f
182 sha1=$2
183 ;;
184 *)
185 sha1=$1
186 ;;
187 esac
f09c9b8c
JS
188 sha1=$(git rev-parse $sha1)
189
3b38ec16 190 if test -f "$DOTEST"/current-commit
f09c9b8c 191 then
4c1360f4 192 if test "$fast_forward" = t
bb645071
SH
193 then
194 cat "$DOTEST"/current-commit | while read current_commit
195 do
196 git rev-parse HEAD > "$REWRITTEN"/$current_commit
197 done
198 rm "$DOTEST"/current-commit ||
199 die "Cannot write current commit's replacement sha1"
200 fi
f09c9b8c
JS
201 fi
202
bb645071 203 echo $sha1 >> "$DOTEST"/current-commit
a96dc01e 204
f09c9b8c 205 # rewrite parents; if none were rewritten, we can fast-forward.
f09c9b8c 206 new_parents=
d911d146
TR
207 pend=" $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)"
208 if test "$pend" = " "
209 then
210 pend=" root"
211 fi
faae853c 212 while [ "$pend" != "" ]
f09c9b8c 213 do
faae853c
SH
214 p=$(expr "$pend" : ' \([^ ]*\)')
215 pend="${pend# $p}"
216
3b38ec16 217 if test -f "$REWRITTEN"/$p
f09c9b8c 218 then
f09c9b8c 219 new_p=$(cat "$REWRITTEN"/$p)
80fe82e4
SH
220
221 # If the todo reordered commits, and our parent is marked for
222 # rewriting, but hasn't been gotten to yet, assume the user meant to
223 # drop it on top of the current HEAD
224 if test -z "$new_p"
225 then
226 new_p=$(git rev-parse HEAD)
227 fi
228
f09c9b8c
JS
229 test $p != $new_p && fast_forward=f
230 case "$new_parents" in
231 *$new_p*)
232 ;; # do nothing; that parent is already there
233 *)
234 new_parents="$new_parents $new_p"
376ccb8c 235 ;;
f09c9b8c 236 esac
1c5fa0a1 237 else
faae853c
SH
238 if test -f "$DROPPED"/$p
239 then
240 fast_forward=f
d911d146
TR
241 replacement="$(cat "$DROPPED"/$p)"
242 test -z "$replacement" && replacement=root
243 pend=" $replacement$pend"
faae853c
SH
244 else
245 new_parents="$new_parents $p"
246 fi
f09c9b8c
JS
247 fi
248 done
249 case $fast_forward in
250 t)
dfa49f33 251 output warn "Fast forward to $sha1"
71d9451e
TR
252 output git reset --hard $sha1 ||
253 die "Cannot fast forward to $sha1"
f09c9b8c
JS
254 ;;
255 f)
376ccb8c 256 first_parent=$(expr "$new_parents" : ' \([^ ]*\)')
a4f25e36
SH
257
258 if [ "$1" != "-n" ]
259 then
260 # detach HEAD to current parent
261 output git checkout $first_parent 2> /dev/null ||
262 die "Cannot move HEAD to $first_parent"
263 fi
f09c9b8c 264
f09c9b8c 265 case "$new_parents" in
376ccb8c 266 ' '*' '*)
a4f25e36
SH
267 test "a$1" = a-n && die "Refusing to squash a merge: $sha1"
268
f09c9b8c
JS
269 # redo merge
270 author_script=$(get_author_ident_from_commit $sha1)
271 eval "$author_script"
376ccb8c 272 msg="$(git cat-file commit $sha1 | sed -e '1,/^$/d')"
f91333d6
BS
273 # No point in merging the first parent, that's HEAD
274 new_parents=${new_parents# $first_parent}
ae830ed7
JS
275 if ! GIT_AUTHOR_NAME="$GIT_AUTHOR_NAME" \
276 GIT_AUTHOR_EMAIL="$GIT_AUTHOR_EMAIL" \
277 GIT_AUTHOR_DATE="$GIT_AUTHOR_DATE" \
278 output git merge $STRATEGY -m "$msg" \
279 $new_parents
f09c9b8c 280 then
376ccb8c 281 printf "%s\n" "$msg" > "$GIT_DIR"/MERGE_MSG
f5b49ea6 282 die_with_patch $sha1 "Error redoing merge $sha1"
f09c9b8c
JS
283 fi
284 ;;
285 *)
2a9c53e0 286 output git cherry-pick "$@" ||
f09c9b8c 287 die_with_patch $sha1 "Could not pick $sha1"
376ccb8c 288 ;;
f09c9b8c 289 esac
376ccb8c 290 ;;
f09c9b8c
JS
291 esac
292}
293
6368f3f8
JS
294nth_string () {
295 case "$1" in
296 *1[0-9]|*[04-9]) echo "$1"th;;
297 *1) echo "$1"st;;
298 *2) echo "$1"nd;;
299 *3) echo "$1"rd;;
300 esac
301}
302
303make_squash_message () {
3b38ec16 304 if test -f "$SQUASH_MSG"; then
c7965afd 305 COUNT=$(($(sed -n "s/^# This is [^0-9]*\([1-9][0-9]*\).*/\1/p" \
b4ce54fc 306 < "$SQUASH_MSG" | sed -ne '$p')+1))
6368f3f8 307 echo "# This is a combination of $COUNT commits."
8ad1065e
JH
308 sed -e 1d -e '2,/^./{
309 /^$/d
310 }' <"$SQUASH_MSG"
6368f3f8
JS
311 else
312 COUNT=2
313 echo "# This is a combination of two commits."
314 echo "# The first commit's message is:"
315 echo
316 git cat-file commit HEAD | sed -e '1,/^$/d'
6368f3f8 317 fi
8ad1065e 318 echo
6368f3f8
JS
319 echo "# This is the $(nth_string $COUNT) commit message:"
320 echo
321 git cat-file commit $1 | sed -e '1,/^$/d'
322}
323
324peek_next_command () {
325 sed -n "1s/ .*$//p" < "$TODO"
326}
327
1b1dce4b 328do_next () {
376ccb8c
JS
329 rm -f "$DOTEST"/message "$DOTEST"/author-script \
330 "$DOTEST"/amend || exit
1b1dce4b
JS
331 read command sha1 rest < "$TODO"
332 case "$command" in
ff74126c 333 '#'*|''|noop)
1b1dce4b 334 mark_action_done
1b1dce4b 335 ;;
f8babc4d 336 pick|p)
1b1dce4b
JS
337 comment_for_reflog pick
338
339 mark_action_done
340 pick_one $sha1 ||
341 die_with_patch $sha1 "Could not apply $sha1... $rest"
342 ;;
f8babc4d 343 edit|e)
1b1dce4b
JS
344 comment_for_reflog edit
345
346 mark_action_done
347 pick_one $sha1 ||
348 die_with_patch $sha1 "Could not apply $sha1... $rest"
349 make_patch $sha1
c14c3c82 350 git rev-parse --verify HEAD > "$DOTEST"/amend
a8ccc204 351 warn "Stopped at $sha1... $rest"
1b1dce4b
JS
352 warn "You can amend the commit now, with"
353 warn
354 warn " git commit --amend"
355 warn
0460fb44
JS
356 warn "Once you are satisfied with your changes, run"
357 warn
358 warn " git rebase --continue"
359 warn
1b1dce4b
JS
360 exit 0
361 ;;
f8babc4d 362 squash|s)
1b1dce4b
JS
363 comment_for_reflog squash
364
12dd1112 365 test -f "$DONE" && has_action "$DONE" ||
1b1dce4b
JS
366 die "Cannot 'squash' without a previous commit"
367
368 mark_action_done
6368f3f8 369 make_squash_message $sha1 > "$MSG"
7c418836
SG
370 failed=f
371 author_script=$(get_author_ident_from_commit HEAD)
372 output git reset --soft HEAD^
373 pick_one -n $sha1 || failed=t
6368f3f8 374 case "$(peek_next_command)" in
f8babc4d 375 squash|s)
91e1ee77 376 USE_OUTPUT=output
7c418836 377 MSG_OPT=-F
94c88ede 378 EDIT_OR_FILE="$MSG"
6368f3f8 379 cp "$MSG" "$SQUASH_MSG"
376ccb8c 380 ;;
6368f3f8 381 *)
91e1ee77 382 USE_OUTPUT=
7c418836 383 MSG_OPT=
94c88ede 384 EDIT_OR_FILE=-e
376ccb8c 385 rm -f "$SQUASH_MSG" || exit
943cea90 386 cp "$MSG" "$GIT_DIR"/SQUASH_MSG
7c418836 387 rm -f "$GIT_DIR"/MERGE_MSG || exit
376ccb8c 388 ;;
6368f3f8 389 esac
18640d99 390 echo "$author_script" > "$DOTEST"/author-script
dbedf972
SP
391 if test $failed = f
392 then
1b1dce4b
JS
393 # This is like --amend, but with a different message
394 eval "$author_script"
ae830ed7
JS
395 GIT_AUTHOR_NAME="$GIT_AUTHOR_NAME" \
396 GIT_AUTHOR_EMAIL="$GIT_AUTHOR_EMAIL" \
397 GIT_AUTHOR_DATE="$GIT_AUTHOR_DATE" \
94c88ede
JS
398 $USE_OUTPUT git commit --no-verify \
399 $MSG_OPT "$EDIT_OR_FILE" || failed=t
dbedf972
SP
400 fi
401 if test $failed = t
402 then
1b1dce4b
JS
403 cp "$MSG" "$GIT_DIR"/MERGE_MSG
404 warn
405 warn "Could not apply $sha1... $rest"
1b1dce4b 406 die_with_patch $sha1 ""
dbedf972 407 fi
1b1dce4b
JS
408 ;;
409 *)
410 warn "Unknown command: $command $sha1 $rest"
f1be316a
JK
411 if git rev-parse --verify -q "$sha1" >/dev/null
412 then
413 die_with_patch $sha1 "Please fix this in the file $TODO."
414 else
415 die "Please fix this in the file $TODO."
416 fi
376ccb8c 417 ;;
1b1dce4b
JS
418 esac
419 test -s "$TODO" && return
420
68a163c9
JS
421 comment_for_reflog finish &&
422 HEADNAME=$(cat "$DOTEST"/head-name) &&
423 OLDHEAD=$(cat "$DOTEST"/head) &&
424 SHORTONTO=$(git rev-parse --short $(cat "$DOTEST"/onto)) &&
72583e6c 425 NEWHEAD=$(git rev-parse HEAD) &&
73697a0b
JS
426 case $HEADNAME in
427 refs/*)
a0c0447b 428 message="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO" &&
73697a0b
JS
429 git update-ref -m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
430 git symbolic-ref HEAD $HEADNAME
431 ;;
432 esac && {
3df0a859 433 test ! -f "$DOTEST"/verbose ||
f3d5e463 434 git diff-tree --stat $(cat "$DOTEST"/head)..HEAD
3df0a859 435 } &&
1b1dce4b 436 rm -rf "$DOTEST" &&
73697a0b 437 git gc --auto &&
1b1dce4b
JS
438 warn "Successfully rebased and updated $HEADNAME."
439
440 exit
441}
442
443do_rest () {
444 while :
445 do
446 do_next
447 done
1b1dce4b
JS
448}
449
0e757e30
JS
450# skip picking commits whose parents are unchanged
451skip_unnecessary_picks () {
452 fd=3
453 while read command sha1 rest
454 do
455 # fd=3 means we skip the command
456 case "$fd,$command,$(git rev-parse --verify --quiet $sha1^)" in
457 3,pick,"$ONTO"*|3,p,"$ONTO"*)
458 # pick a commit whose parent is current $ONTO -> skip
459 ONTO=$sha1
460 ;;
461 3,#*|3,,*)
462 # copy comments
463 ;;
464 *)
465 fd=1
466 ;;
467 esac
468 echo "$command${sha1:+ }$sha1${rest:+ }$rest" >&$fd
469 done <"$TODO" >"$TODO.new" 3>>"$DONE" &&
470 mv -f "$TODO".new "$TODO" ||
471 die "Could not skip unnecessary pick commands"
472}
473
7970aaf0
SB
474# check if no other options are set
475is_standalone () {
476 test $# -eq 2 -a "$2" = '--' &&
477 test -z "$ONTO" &&
478 test -z "$PRESERVE_MERGES" &&
479 test -z "$STRATEGY" &&
480 test -z "$VERBOSE"
481}
482
483get_saved_options () {
484 test -d "$REWRITTEN" && PRESERVE_MERGES=t
485 test -f "$DOTEST"/strategy && STRATEGY="$(cat "$DOTEST"/strategy)"
486 test -f "$DOTEST"/verbose && VERBOSE=t
a6c7a276 487 test -f "$DOTEST"/rebase-root && REBASE_ROOT=t
7970aaf0
SB
488}
489
822f7c73 490while test $# != 0
1b1dce4b
JS
491do
492 case "$1" in
c4427656
NS
493 --no-verify)
494 OK_TO_SKIP_PRE_REBASE=yes
495 ;;
496 --verify)
497 ;;
1b1dce4b 498 --continue)
7970aaf0
SB
499 is_standalone "$@" || usage
500 get_saved_options
1b1dce4b
JS
501 comment_for_reflog continue
502
503 test -d "$DOTEST" || die "No interactive rebase running"
504
ab119032
JH
505 # Sanity check
506 git rev-parse --verify HEAD >/dev/null ||
507 die "Cannot read HEAD"
6848d58c
JS
508 git update-index --ignore-submodules --refresh &&
509 git diff-files --quiet --ignore-submodules ||
ab119032
JH
510 die "Working tree is dirty"
511
512 # do we have anything to commit?
6848d58c 513 if git diff-index --cached --quiet --ignore-submodules HEAD --
03270628 514 then
ab119032
JH
515 : Nothing to commit -- skip this
516 else
517 . "$DOTEST"/author-script ||
518 die "Cannot find the author identity"
8beb1f33 519 amend=
ab119032
JH
520 if test -f "$DOTEST"/amend
521 then
8beb1f33 522 amend=$(git rev-parse --verify HEAD)
c14c3c82
DP
523 test "$amend" = $(cat "$DOTEST"/amend) ||
524 die "\
525You have uncommitted changes in your working tree. Please, commit them
526first and then run 'git rebase --continue' again."
ab119032
JH
527 git reset --soft HEAD^ ||
528 die "Cannot rewind the HEAD"
529 fi
530 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE &&
8beb1f33
DP
531 git commit --no-verify -F "$DOTEST"/message -e || {
532 test -n "$amend" && git reset --soft $amend
533 die "Could not commit staged changes."
534 }
03270628 535 fi
18640d99 536
1b1dce4b
JS
537 require_clean_work_tree
538 do_rest
539 ;;
540 --abort)
7970aaf0
SB
541 is_standalone "$@" || usage
542 get_saved_options
1b1dce4b
JS
543 comment_for_reflog abort
544
ecfe72ff 545 git rerere clear
1b1dce4b
JS
546 test -d "$DOTEST" || die "No interactive rebase running"
547
548 HEADNAME=$(cat "$DOTEST"/head-name)
549 HEAD=$(cat "$DOTEST"/head)
73697a0b
JS
550 case $HEADNAME in
551 refs/*)
552 git symbolic-ref HEAD $HEADNAME
553 ;;
554 esac &&
dfa49f33 555 output git reset --hard $HEAD &&
1b1dce4b
JS
556 rm -rf "$DOTEST"
557 exit
558 ;;
559 --skip)
7970aaf0
SB
560 is_standalone "$@" || usage
561 get_saved_options
1b1dce4b
JS
562 comment_for_reflog skip
563
ecfe72ff 564 git rerere clear
1b1dce4b
JS
565 test -d "$DOTEST" || die "No interactive rebase running"
566
dfa49f33 567 output git reset --hard && do_rest
1b1dce4b 568 ;;
7970aaf0 569 -s)
1b1dce4b
JS
570 case "$#,$1" in
571 *,*=*)
b5e960b1 572 STRATEGY="-s "$(expr "z$1" : 'z-[^=]*=\(.*\)') ;;
1b1dce4b
JS
573 1,*)
574 usage ;;
575 *)
576 STRATEGY="-s $2"
577 shift ;;
578 esac
579 ;;
7970aaf0 580 -m)
1b1dce4b
JS
581 # we use merge anyway
582 ;;
7970aaf0 583 -v)
1b1dce4b
JS
584 VERBOSE=t
585 ;;
7970aaf0 586 -p)
f09c9b8c
JS
587 PRESERVE_MERGES=t
588 ;;
7970aaf0 589 -i)
1b1dce4b
JS
590 # yeah, we know
591 ;;
d911d146
TR
592 --root)
593 REBASE_ROOT=t
594 ;;
7970aaf0
SB
595 --onto)
596 shift
597 ONTO=$(git rev-parse --verify "$1") ||
598 die "Does not point to a valid commit: $1"
1b1dce4b 599 ;;
7970aaf0
SB
600 --)
601 shift
277d7e91
JS
602 test -z "$REBASE_ROOT" -a $# -ge 1 -a $# -le 2 ||
603 test ! -z "$REBASE_ROOT" -a $# -le 1 || usage
1b1dce4b
JS
604 test -d "$DOTEST" &&
605 die "Interactive rebase already started"
606
607 git var GIT_COMMITTER_IDENT >/dev/null ||
608 die "You need to set your committer info first"
609
d911d146
TR
610 if test -z "$REBASE_ROOT"
611 then
612 UPSTREAM_ARG="$1"
613 UPSTREAM=$(git rev-parse --verify "$1") || die "Invalid base"
614 test -z "$ONTO" && ONTO=$UPSTREAM
615 shift
616 else
a6c7a276 617 UPSTREAM=
d911d146
TR
618 UPSTREAM_ARG=--root
619 test -z "$ONTO" &&
620 die "You must specify --onto when using --root"
621 fi
622 run_pre_rebase_hook "$UPSTREAM_ARG" "$@"
d8fab023 623
1b1dce4b
JS
624 comment_for_reflog start
625
1b1dce4b
JS
626 require_clean_work_tree
627
d911d146 628 if test ! -z "$1"
1b1dce4b 629 then
d911d146
TR
630 output git show-ref --verify --quiet "refs/heads/$1" ||
631 die "Invalid branchname: $1"
632 output git checkout "$1" ||
633 die "Could not checkout $1"
1b1dce4b
JS
634 fi
635
636 HEAD=$(git rev-parse --verify HEAD) || die "No HEAD?"
5166810b
MK
637 mkdir "$DOTEST" || die "Could not create temporary $DOTEST"
638
1b1dce4b 639 : > "$DOTEST"/interactive || die "Could not mark as interactive"
73697a0b
JS
640 git symbolic-ref HEAD > "$DOTEST"/head-name 2> /dev/null ||
641 echo "detached HEAD" > "$DOTEST"/head-name
1b1dce4b
JS
642
643 echo $HEAD > "$DOTEST"/head
a6c7a276
JH
644 case "$REBASE_ROOT" in
645 '')
646 rm -f "$DOTEST"/rebase-root ;;
647 *)
648 : >"$DOTEST"/rebase-root ;;
649 esac
1b1dce4b 650 echo $ONTO > "$DOTEST"/onto
8e4a91bd 651 test -z "$STRATEGY" || echo "$STRATEGY" > "$DOTEST"/strategy
1b1dce4b 652 test t = "$VERBOSE" && : > "$DOTEST"/verbose
3b38ec16 653 if test t = "$PRESERVE_MERGES"
f09c9b8c
JS
654 then
655 # $REWRITTEN contains files for each commit that is
656 # reachable by at least one merge base of $HEAD and
657 # $UPSTREAM. They are not necessarily rewritten, but
658 # their children might be.
659 # This ensures that commits on merged, but otherwise
660 # unrelated side branches are left alone. (Think "X"
661 # in the man page's example.)
d911d146
TR
662 if test -z "$REBASE_ROOT"
663 then
664 mkdir "$REWRITTEN" &&
665 for c in $(git merge-base --all $HEAD $UPSTREAM)
666 do
667 echo $ONTO > "$REWRITTEN"/$c ||
668 die "Could not init rewritten commits"
669 done
670 else
671 mkdir "$REWRITTEN" &&
672 echo $ONTO > "$REWRITTEN"/root ||
f09c9b8c 673 die "Could not init rewritten commits"
d911d146 674 fi
acc8559a
SH
675 # No cherry-pick because our first pass is to determine
676 # parents to rewrite and skipping dropped commits would
677 # prematurely end our probe
f09c9b8c 678 MERGES_OPTION=
d80d6bc1 679 first_after_upstream="$(git rev-list --reverse --first-parent $UPSTREAM..$HEAD | head -n 1)"
f09c9b8c 680 else
acc8559a 681 MERGES_OPTION="--no-merges --cherry-pick"
f09c9b8c 682 fi
1b1dce4b 683
c54b7817
JS
684 SHORTHEAD=$(git rev-parse --short $HEAD)
685 SHORTONTO=$(git rev-parse --short $ONTO)
d911d146
TR
686 if test -z "$REBASE_ROOT"
687 # this is now equivalent to ! -z "$UPSTREAM"
688 then
689 SHORTUPSTREAM=$(git rev-parse --short $UPSTREAM)
690 REVISIONS=$UPSTREAM...$HEAD
691 SHORTREVISIONS=$SHORTUPSTREAM..$SHORTHEAD
692 else
693 REVISIONS=$ONTO...$HEAD
694 SHORTREVISIONS=$SHORTHEAD
695 fi
6047a234 696 git rev-list $MERGES_OPTION --pretty=oneline --abbrev-commit \
acc8559a 697 --abbrev=7 --reverse --left-right --topo-order \
d911d146 698 $REVISIONS | \
acc8559a
SH
699 sed -n "s/^>//p" | while read shortsha1 rest
700 do
701 if test t != "$PRESERVE_MERGES"
702 then
703 echo "pick $shortsha1 $rest" >> "$TODO"
704 else
705 sha1=$(git rev-parse $shortsha1)
d911d146
TR
706 if test -z "$REBASE_ROOT"
707 then
708 preserve=t
709 for p in $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)
710 do
1830d9cb 711 if test -f "$REWRITTEN"/$p -a \( $p != $ONTO -o $sha1 = $first_after_upstream \)
d911d146
TR
712 then
713 preserve=f
714 fi
715 done
716 else
717 preserve=f
718 fi
acc8559a
SH
719 if test f = "$preserve"
720 then
721 touch "$REWRITTEN"/$sha1
722 echo "pick $shortsha1 $rest" >> "$TODO"
723 fi
724 fi
725 done
726
727 # Watch for commits that been dropped by --cherry-pick
728 if test t = "$PRESERVE_MERGES"
729 then
730 mkdir "$DROPPED"
731 # Save all non-cherry-picked changes
d911d146 732 git rev-list $REVISIONS --left-right --cherry-pick | \
acc8559a
SH
733 sed -n "s/^>//p" > "$DOTEST"/not-cherry-picks
734 # Now all commits and note which ones are missing in
735 # not-cherry-picks and hence being dropped
d911d146 736 git rev-list $REVISIONS |
e249044c 737 while read rev
acc8559a 738 do
e1622bfc 739 if test -f "$REWRITTEN"/$rev -a "$(sane_grep "$rev" "$DOTEST"/not-cherry-picks)" = ""
acc8559a
SH
740 then
741 # Use -f2 because if rev-list is telling us this commit is
742 # not worthwhile, we don't want to track its multiple heads,
743 # just the history of its first-parent for others that will
744 # be rebasing on top of it
d911d146 745 git rev-list --parents -1 $rev | cut -d' ' -s -f2 > "$DROPPED"/$rev
e249044c 746 short=$(git rev-list -1 --abbrev-commit --abbrev=7 $rev)
e1622bfc 747 sane_grep -v "^[a-z][a-z]* $short" <"$TODO" > "${TODO}2" ; mv "${TODO}2" "$TODO"
acc8559a
SH
748 rm "$REWRITTEN"/$rev
749 fi
750 done
751 fi
d911d146 752
ff74126c 753 test -s "$TODO" || echo noop >> "$TODO"
6047a234
JS
754 cat >> "$TODO" << EOF
755
d911d146 756# Rebase $SHORTREVISIONS onto $SHORTONTO
1b1dce4b
JS
757#
758# Commands:
88b1f0b8
MV
759# p, pick = use commit
760# e, edit = use commit, but stop for amending
761# s, squash = use commit, but meld into previous commit
82576ddb
JS
762#
763# If you remove a line here THAT COMMIT WILL BE LOST.
6047a234 764# However, if you remove everything, the rebase will be aborted.
82576ddb 765#
1b1dce4b 766EOF
1b1dce4b 767
376ccb8c 768 has_action "$TODO" ||
c54b7817 769 die_abort "Nothing to do"
1b1dce4b
JS
770
771 cp "$TODO" "$TODO".backup
ef0c2abf 772 git_editor "$TODO" ||
1b1dce4b
JS
773 die "Could not execute editor"
774
376ccb8c 775 has_action "$TODO" ||
c54b7817
JS
776 die_abort "Nothing to do"
777
0e757e30
JS
778 test -d "$REWRITTEN" || skip_unnecessary_picks
779
22e40795 780 git update-ref ORIG_HEAD $HEAD
dfa49f33 781 output git checkout $ONTO && do_rest
376ccb8c 782 ;;
1b1dce4b
JS
783 esac
784 shift
785done