]> git.ipfire.org Git - thirdparty/git.git/blame - git-legacy-rebase.sh
sha1-file: split OBJECT_INFO_FOR_PREFETCH
[thirdparty/git.git] / git-legacy-rebase.sh
CommitLineData
59e6b23a
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano.
4#
5
533b7039 6SUBDIRECTORY_OK=Yes
45e2acf3 7OPTIONS_KEEPDASHDASH=
b6e9e73e 8OPTIONS_STUCKLONG=t
45e2acf3 9OPTIONS_SPEC="\
c2145384 10git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] [<upstream>] [<branch>]
0cd993a7 11git rebase [-i] [options] [--exec <cmd>] [--onto <newbase>] --root [<branch>]
82cb775c 12git rebase --continue | --abort | --skip | --edit-todo
45e2acf3
MZ
13--
14 Available options are
15v,verbose! display a diffstat of what changed upstream
16q,quiet! be quiet. implies --no-stat
619e3604 17autostash automatically stash/stash pop before and after
ad8261d2 18fork-point use 'merge-base --fork-point' to refine upstream
45e2acf3 19onto=! rebase onto given branch instead of upstream
7543f6f4 20r,rebase-merges? try to rebase merges instead of skipping them
45e2acf3
MZ
21p,preserve-merges! try to recreate merges instead of ignoring them
22s,strategy=! use the given merge strategy
d4e80629 23X,strategy-option=! pass the argument through to the merge strategy
45e2acf3 24no-ff! cherry-pick all commits, even if unchanged
d4e80629 25f,force-rebase! cherry-pick all commits, even if unchanged
45e2acf3
MZ
26m,merge! use merging strategies to rebase
27i,interactive! let the user edit the list of commits to rebase
c2145384 28x,exec=! add exec lines after each commit of the editable list
90e1818f 29k,keep-empty preserve empty commits during rebase
a6c612b5 30allow-empty-message allow rebasing commits with empty messages
45e2acf3
MZ
31stat! display a diffstat of what changed upstream
32n,no-stat! do not show diffstat of what changed upstream
33verify allow pre-rebase hook to run
34rerere-autoupdate allow rerere to update index with resolved conflicts
35root! rebase all reachable commits up to the root(s)
36autosquash move commits that begin with squash!/fixup! under -i
d4e80629 37signoff add a Signed-off-by: line to each commit
45e2acf3
MZ
38committer-date-is-author-date! passed to 'git am'
39ignore-date! passed to 'git am'
40whitespace=! passed to 'git apply'
41ignore-whitespace! passed to 'git apply'
42C=! passed to 'git apply'
3ee5e540 43S,gpg-sign? GPG-sign commits
45e2acf3 44 Actions:
5960bc9d
MZ
45continue! continue
46abort! abort and check out the original branch
47skip! skip current patch and continue
eb9a7cb4 48edit-todo! edit the todo list during an interactive rebase
9512177b 49quit! abort but keep HEAD where it is
66335298 50show-current-patch! show the patch file being applied or merged
d421afa0 51reschedule-failed-exec automatically reschedule failed exec commands
45e2acf3 52"
ae2b0f15 53. git-sh-setup
f9474132 54set_reflog_action rebase
035b5bf6 55require_work_tree_exists
533b7039 56cd_to_toplevel
4282c4fb 57
61dfa1bb
JH
58LF='
59'
6bb4e485 60ok_to_skip_pre_rebase=
c7b64aa0 61
bb2ac4fc 62squash_onto=
6bb4e485 63unset onto
1e0dacdb 64unset restrict_revision
c2145384 65cmd=
9765b6ab 66strategy=
93ce190c 67strategy_opts=
58634dbf 68do_merge=
69a636ad
MZ
69merge_dir="$GIT_DIR"/rebase-merge
70apply_dir="$GIT_DIR"/rebase-apply
b758789c 71verbose=
9474a029
MZ
72diffstat=
73test "$(git config --bool rebase.stat)" = true && diffstat=t
58794775 74autostash="$(git config --bool rebase.autostash || echo false)"
ad8261d2 75fork_point=auto
67dad687 76git_am_opt=
9eaa858e 77git_format_patch_opt=
190f5323 78rebase_root=
b2f82e05 79force_rebase=
cb6020bb 80allow_rerere_autoupdate=
99de0640
MZ
81# Non-empty if a rebase was in progress when 'git rebase' was invoked
82in_progress=
83# One of {am, merge, interactive}
84type=
85# One of {"$GIT_DIR"/rebase-apply, "$GIT_DIR"/rebase-merge}
86state_dir=
34262322
MZ
87# One of {'', continue, skip, abort}, as parsed from command line
88action=
8f6aed71 89rebase_merges=
7543f6f4 90rebase_cousins=
cf432ca0
MZ
91preserve_merges=
92autosquash=
90e1818f 93keep_empty=
b00bf1c9 94allow_empty_message=--allow-empty-message
a852ec7f 95signoff=
d421afa0 96reschedule_failed_exec=
cf432ca0 97test "$(git config --bool rebase.autosquash)" = "true" && autosquash=t
66948561
JH
98case "$(git config --bool commit.gpgsign)" in
99true) gpg_sign_opt=-S ;;
100*) gpg_sign_opt= ;;
101esac
969de3ff
JS
102test "$(git config --bool rebase.reschedulefailedexec)" = "true" &&
103reschedule_failed_exec=--reschedule-failed-exec
c7b64aa0 104. git-rebase--common
58634dbf 105
fa99c1e1 106read_basic_state () {
dc8ca912
RR
107 test -f "$state_dir/head-name" &&
108 test -f "$state_dir/onto" &&
02ac45fa
MZ
109 head_name=$(cat "$state_dir"/head-name) &&
110 onto=$(cat "$state_dir"/onto) &&
84df4560
MZ
111 # We always write to orig-head, but interactive rebase used to write to
112 # head. Fall back to reading from head to cover for the case that the
113 # user upgraded git with an ongoing interactive rebase.
114 if test -f "$state_dir"/orig-head
2959c283 115 then
2959c283 116 orig_head=$(cat "$state_dir"/orig-head)
84df4560
MZ
117 else
118 orig_head=$(cat "$state_dir"/head)
2959c283 119 fi &&
899b49c4 120 test -f "$state_dir"/quiet && GIT_QUIET=t
7b37a7c6 121 test -f "$state_dir"/verbose && verbose=t
80ff4795
MZ
122 test -f "$state_dir"/strategy && strategy="$(cat "$state_dir"/strategy)"
123 test -f "$state_dir"/strategy_opts &&
124 strategy_opts="$(cat "$state_dir"/strategy_opts)"
b3e4847e
MZ
125 test -f "$state_dir"/allow_rerere_autoupdate &&
126 allow_rerere_autoupdate="$(cat "$state_dir"/allow_rerere_autoupdate)"
3ee5e540
NV
127 test -f "$state_dir"/gpg_sign_opt &&
128 gpg_sign_opt="$(cat "$state_dir"/gpg_sign_opt)"
a852ec7f
PW
129 test -f "$state_dir"/signoff && {
130 signoff="$(cat "$state_dir"/signoff)"
131 force_rebase=t
132 }
d421afa0
JS
133 test -f "$state_dir"/reschedule-failed-exec &&
134 reschedule_failed_exec=t
02ac45fa
MZ
135}
136
e4244eb3 137finish_rebase () {
fbd7a232 138 rm -f "$(git rev-parse --git-path REBASE_HEAD)"
e4244eb3 139 apply_autostash &&
8c24f5b0 140 { git gc --auto || true; } &&
58794775
RR
141 rm -rf "$state_dir"
142}
143
0af129b2
AG
144run_interactive () {
145 GIT_CHERRY_PICK_HELP="$resolvemsg"
146 export GIT_CHERRY_PICK_HELP
147
148 test -n "$keep_empty" && keep_empty="--keep-empty"
149 test -n "$rebase_merges" && rebase_merges="--rebase-merges"
150 test -n "$rebase_cousins" && rebase_cousins="--rebase-cousins"
151 test -n "$autosquash" && autosquash="--autosquash"
152 test -n "$verbose" && verbose="--verbose"
153 test -n "$force_rebase" && force_rebase="--no-ff"
154 test -n "$restrict_revision" && \
155 restrict_revision="--restrict-revision=^$restrict_revision"
156 test -n "$upstream" && upstream="--upstream=$upstream"
157 test -n "$onto" && onto="--onto=$onto"
158 test -n "$squash_onto" && squash_onto="--squash-onto=$squash_onto"
159 test -n "$onto_name" && onto_name="--onto-name=$onto_name"
160 test -n "$head_name" && head_name="--head-name=$head_name"
161 test -n "$strategy" && strategy="--strategy=$strategy"
162 test -n "$strategy_opts" && strategy_opts="--strategy-opts=$strategy_opts"
163 test -n "$switch_to" && switch_to="--switch-to=$switch_to"
164 test -n "$cmd" && cmd="--cmd=$cmd"
165 test -n "$action" && action="--$action"
166
cf808208 167 exec git rebase--interactive "$action" "$keep_empty" "$rebase_merges" "$rebase_cousins" \
0af129b2
AG
168 "$upstream" "$onto" "$squash_onto" "$restrict_revision" \
169 "$allow_empty_message" "$autosquash" "$verbose" \
170 "$force_rebase" "$onto_name" "$head_name" "$strategy" \
171 "$strategy_opts" "$cmd" "$switch_to" \
d421afa0
JS
172 "$allow_rerere_autoupdate" "$gpg_sign_opt" "$signoff" \
173 "$reschedule_failed_exec"
0af129b2
AG
174}
175
8cd65967 176run_specific_rebase () {
f8cca019 177 if [ "$interactive_rebase" = implied ]; then
891d4a03
PW
178 GIT_SEQUENCE_EDITOR=:
179 export GIT_SEQUENCE_EDITOR
8a6dae10 180 autosquash=
f8cca019 181 fi
6d98d0c0 182
0af129b2 183 if test -n "$interactive_rebase" -a -z "$preserve_merges"
6d98d0c0 184 then
0af129b2 185 run_interactive
6d98d0c0 186 else
0af129b2
AG
187 . git-rebase--$type
188
189 if test -z "$preserve_merges"
190 then
191 git_rebase__$type
192 else
193 git_rebase__preserve_merges
194 fi
6d98d0c0
AG
195 fi
196
f5f758a5
RR
197 ret=$?
198 if test $ret -eq 0
199 then
58794775 200 finish_rebase
b97e1873 201 elif test $ret -eq 2 # special exit status for rebase -p
e4244eb3
RR
202 then
203 apply_autostash &&
204 rm -rf "$state_dir" &&
205 die "Nothing to do"
f5f758a5
RR
206 fi
207 exit $ret
1b1dce4b
JS
208}
209
d70b4a8f 210run_pre_rebase_hook () {
6bb4e485 211 if test -z "$ok_to_skip_pre_rebase" &&
b849b954 212 test -x "$(git rev-parse --git-path hooks/pre-rebase)"
d70b4a8f 213 then
b849b954 214 "$(git rev-parse --git-path hooks/pre-rebase)" ${1+"$@"} ||
c7108bf9 215 die "$(gettext "The pre-rebase hook refused to rebase.")"
d70b4a8f
NS
216 fi
217}
218
69a636ad 219test -f "$apply_dir"/applying &&
82cb775c 220 die "$(gettext "It looks like 'git am' is in progress. Cannot rebase.")"
9b752a6e 221
99de0640
MZ
222if test -d "$apply_dir"
223then
224 type=am
225 state_dir="$apply_dir"
226elif test -d "$merge_dir"
227then
68aa495b 228 type=interactive
6d98d0c0
AG
229 if test -d "$merge_dir"/rewritten
230 then
231 type=preserve-merges
232 interactive_rebase=explicit
233 preserve_merges=t
234 elif test -f "$merge_dir"/interactive
99de0640 235 then
99de0640 236 interactive_rebase=explicit
99de0640
MZ
237 fi
238 state_dir="$merge_dir"
239fi
240test -n "$type" && in_progress=t
241
95135b06 242total_argc=$#
822f7c73 243while test $# != 0
e646c9c8
JH
244do
245 case "$1" in
c4427656 246 --no-verify)
6bb4e485 247 ok_to_skip_pre_rebase=yes
c4427656 248 ;;
7baf9c4b 249 --verify)
6bb4e485 250 ok_to_skip_pre_rebase=
7baf9c4b 251 ;;
66335298 252 --continue|--skip|--abort|--quit|--edit-todo|--show-current-patch)
45e2acf3 253 test $total_argc -eq 2 || usage
34262322 254 action=${1##--}
031321c6 255 ;;
b6e9e73e
NV
256 --onto=*)
257 onto="${1#--onto=}"
e646c9c8 258 ;;
b6e9e73e
NV
259 --exec=*)
260 cmd="${cmd}exec ${1#--exec=}${LF}"
78ec2400 261 test -z "$interactive_rebase" && interactive_rebase=implied
c2145384 262 ;;
b6e9e73e 263 --interactive)
cf432ca0
MZ
264 interactive_rebase=explicit
265 ;;
b6e9e73e 266 --keep-empty)
90e1818f
NH
267 keep_empty=yes
268 ;;
a6c612b5
GS
269 --allow-empty-message)
270 allow_empty_message=--allow-empty-message
271 ;;
3d946165
PW
272 --no-keep-empty)
273 keep_empty=
274 ;;
8f6aed71
JS
275 --rebase-merges)
276 rebase_merges=t
277 test -z "$interactive_rebase" && interactive_rebase=implied
278 ;;
7543f6f4
JS
279 --rebase-merges=*)
280 rebase_merges=t
281 case "${1#*=}" in
282 rebase-cousins) rebase_cousins=t;;
283 no-rebase-cousins) rebase_cousins=;;
284 *) die "Unknown mode: $1";;
285 esac
286 test -z "$interactive_rebase" && interactive_rebase=implied
287 ;;
b6e9e73e 288 --preserve-merges)
cf432ca0
MZ
289 preserve_merges=t
290 test -z "$interactive_rebase" && interactive_rebase=implied
291 ;;
292 --autosquash)
293 autosquash=t
294 ;;
295 --no-autosquash)
296 autosquash=
297 ;;
ad8261d2
JK
298 --fork-point)
299 fork_point=t
300 ;;
301 --no-fork-point)
302 fork_point=
303 ;;
b6e9e73e 304 --merge)
58634dbf
EW
305 do_merge=t
306 ;;
b6e9e73e 307 --strategy-option=*)
0060041d 308 strategy_opts="$strategy_opts $(git rev-parse --sq-quote "--${1#--strategy-option=}" | sed -e s/^.//)"
93ce190c 309 do_merge=t
9765b6ab 310 test -z "$strategy" && strategy=recursive
93ce190c 311 ;;
b6e9e73e
NV
312 --strategy=*)
313 strategy="${1#--strategy=}"
58634dbf
EW
314 do_merge=t
315 ;;
b6e9e73e 316 --no-stat)
a9c3821c
TAV
317 diffstat=
318 ;;
319 --stat)
320 diffstat=t
321 ;;
58794775
RR
322 --autostash)
323 autostash=true
324 ;;
619e3604
JK
325 --no-autostash)
326 autostash=false
327 ;;
b6e9e73e 328 --verbose)
b758789c 329 verbose=t
a9c3821c 330 diffstat=t
0e987a12
SB
331 GIT_QUIET=
332 ;;
b6e9e73e 333 --quiet)
0e987a12
SB
334 GIT_QUIET=t
335 git_am_opt="$git_am_opt -q"
336 verbose=
337 diffstat=
b758789c 338 ;;
b6e9e73e
NV
339 --whitespace=*)
340 git_am_opt="$git_am_opt --whitespace=${1#--whitespace=}"
341 case "${1#--whitespace=}" in
45e2acf3 342 fix|strip)
b2f82e05
SR
343 force_rebase=t
344 ;;
7e097e27
JS
345 warn|nowarn|error|error-all)
346 ;; # okay, known whitespace option
347 *)
348 die "fatal: Invalid whitespace option: '${1#*=}'"
349 ;;
b2f82e05 350 esac
059f446d 351 ;;
86c91f91
GB
352 --ignore-whitespace)
353 git_am_opt="$git_am_opt $1"
354 ;;
a852ec7f
PW
355 --signoff)
356 signoff=--signoff
357 ;;
358 --no-signoff)
359 signoff=
360 ;;
361 --committer-date-is-author-date|--ignore-date)
570ccad3
MB
362 git_am_opt="$git_am_opt $1"
363 force_rebase=t
364 ;;
7e097e27
JS
365 -C*[!0-9]*)
366 die "fatal: switch \`C' expects a numerical value"
367 ;;
b6e9e73e
NV
368 -C*)
369 git_am_opt="$git_am_opt $1"
67dad687 370 ;;
190f5323
TR
371 --root)
372 rebase_root=t
373 ;;
b6e9e73e 374 --force-rebase|--no-ff)
b2f82e05
SR
375 force_rebase=t
376 ;;
cb6020bb
JH
377 --rerere-autoupdate|--no-rerere-autoupdate)
378 allow_rerere_autoupdate="$1"
379 ;;
3ee5e540
NV
380 --gpg-sign)
381 gpg_sign_opt=-S
382 ;;
383 --gpg-sign=*)
384 gpg_sign_opt="-S${1#--gpg-sign=}"
385 ;;
d421afa0
JS
386 --reschedule-failed-exec)
387 reschedule_failed_exec=--reschedule-failed-exec
388 ;;
389 --no-reschedule-failed-exec)
390 reschedule_failed_exec=
391 ;;
45e2acf3
MZ
392 --)
393 shift
e646c9c8
JH
394 break
395 ;;
697bc885
BC
396 *)
397 usage
398 ;;
e646c9c8
JH
399 esac
400 shift
401done
51b2ead0 402test $# -gt 2 && usage
2db8aaec 403
cf432ca0
MZ
404if test -n "$action"
405then
c7108bf9 406 test -z "$in_progress" && die "$(gettext "No rebase in progress?")"
2959c283 407 # Only interactive rebase uses detailed reflog messages
6d98d0c0 408 if test -n "$interactive_rebase" && test "$GIT_REFLOG_ACTION" = rebase
2959c283
MZ
409 then
410 GIT_REFLOG_ACTION="rebase -i ($action)"
411 export GIT_REFLOG_ACTION
412 fi
cf432ca0 413fi
34262322 414
6d98d0c0 415if test "$action" = "edit-todo" && test -z "$interactive_rebase"
eb9a7cb4
AW
416then
417 die "$(gettext "The --edit-todo action can only be used during interactive rebase.")"
418fi
419
34262322
MZ
420case "$action" in
421continue)
2959c283
MZ
422 # Sanity check
423 git rev-parse --verify HEAD >/dev/null ||
c7108bf9 424 die "$(gettext "Cannot read HEAD")"
34262322
MZ
425 git update-index --ignore-submodules --refresh &&
426 git diff-files --quiet --ignore-submodules || {
c7108bf9
JX
427 echo "$(gettext "You must edit all merge conflicts and then
428mark them as resolved using git add")"
34262322
MZ
429 exit 1
430 }
fa99c1e1
MZ
431 read_basic_state
432 run_specific_rebase
34262322
MZ
433 ;;
434skip)
4974c2ca 435 output git reset --hard HEAD || exit $?
fa99c1e1
MZ
436 read_basic_state
437 run_specific_rebase
34262322
MZ
438 ;;
439abort)
440 git rerere clear
fa99c1e1 441 read_basic_state
34262322
MZ
442 case "$head_name" in
443 refs/*)
ea69619c 444 git symbolic-ref -m "rebase: aborting" HEAD $head_name ||
c7108bf9 445 die "$(eval_gettext "Could not move back to \$head_name")"
34262322
MZ
446 ;;
447 esac
4974c2ca 448 output git reset --hard $orig_head
58794775 449 finish_rebase
34262322
MZ
450 exit
451 ;;
9512177b
NTND
452quit)
453 exec rm -rf "$state_dir"
454 ;;
eb9a7cb4
AW
455edit-todo)
456 run_specific_rebase
457 ;;
66335298
NTND
458show-current-patch)
459 run_specific_rebase
460 die "BUG: run_specific_rebase is not supposed to return here"
461 ;;
34262322
MZ
462esac
463
99de0640
MZ
464# Make sure no rebase is in progress
465if test -n "$in_progress"
7f4bd5d8 466then
c7108bf9
JX
467 state_dir_base=${state_dir##*/}
468 cmd_live_rebase="git rebase (--continue | --abort | --skip)"
469 cmd_clear_stale_rebase="rm -fr \"$state_dir\""
470 die "
471$(eval_gettext 'It seems that there is already a $state_dir_base directory, and
e39beac6 472I wonder if you are in the middle of another rebase. If that is the
99de0640 473case, please try
c7108bf9 474 $cmd_live_rebase
99de0640 475If that is not the case, please
c7108bf9 476 $cmd_clear_stale_rebase
9b752a6e 477and run me again. I am stopping in case you still have something
c7108bf9 478valuable there.')"
7f4bd5d8
JH
479fi
480
df5df20c
CW
481if test -n "$rebase_root" && test -z "$onto"
482then
483 test -z "$interactive_rebase" && interactive_rebase=implied
484fi
485
da27a6fb
PW
486if test -n "$keep_empty"
487then
488 test -z "$interactive_rebase" && interactive_rebase=implied
df5df20c
CW
489fi
490
68aa495b 491actually_interactive=
cf432ca0
MZ
492if test -n "$interactive_rebase"
493then
6d98d0c0
AG
494 if test -z "$preserve_merges"
495 then
496 type=interactive
497 else
498 type=preserve-merges
499 fi
68aa495b 500 actually_interactive=t
cf432ca0
MZ
501 state_dir="$merge_dir"
502elif test -n "$do_merge"
503then
68aa495b
EN
504 interactive_rebase=implied
505 type=interactive
cf432ca0
MZ
506 state_dir="$merge_dir"
507else
508 type=am
509 state_dir="$apply_dir"
510fi
511
9eaa858e
KW
512if test -t 2 && test -z "$GIT_QUIET"
513then
514 git_format_patch_opt="$git_format_patch_opt --progress"
515fi
516
7b76ac66
EN
517incompatible_opts=$(echo " $git_am_opt " | \
518 sed -e 's/ -q / /g' -e 's/^ \(.*\) $/\1/')
519if test -n "$incompatible_opts"
520then
68aa495b 521 if test -n "$actually_interactive" || test "$do_merge"
c840e1af 522 then
68aa495b 523 die "$(gettext "fatal: cannot combine am options with either interactive or merge options")"
c840e1af
EN
524 fi
525fi
526
a852ec7f
PW
527if test -n "$signoff"
528then
b79966aa 529 test -n "$preserve_merges" &&
c913c596 530 die "$(gettext "fatal: cannot combine '--signoff' with '--preserve-merges'")"
a852ec7f
PW
531 git_am_opt="$git_am_opt $signoff"
532 force_rebase=t
533fi
534
c840e1af
EN
535if test -n "$preserve_merges"
536then
537 # Note: incompatibility with --signoff handled in signoff block above
538 # Note: incompatibility with --interactive is just a strong warning;
539 # git-rebase.txt caveats with "unless you know what you are doing"
540 test -n "$rebase_merges" &&
c913c596 541 die "$(gettext "fatal: cannot combine '--preserve-merges' with '--rebase-merges'")"
d421afa0
JS
542
543 test -n "$reschedule_failed_exec" &&
544 die "$(gettext "error: cannot combine '--preserve-merges' with '--reschedule-failed-exec'")"
c840e1af
EN
545fi
546
547if test -n "$rebase_merges"
548then
549 test -n "$strategy_opts" &&
c913c596 550 die "$(gettext "fatal: cannot combine '--rebase-merges' with '--strategy-option'")"
c840e1af 551 test -n "$strategy" &&
c913c596 552 die "$(gettext "fatal: cannot combine '--rebase-merges' with '--strategy'")"
c840e1af
EN
553fi
554
190f5323
TR
555if test -z "$rebase_root"
556then
15a147e6
MZ
557 case "$#" in
558 0)
559 if ! upstream_name=$(git rev-parse --symbolic-full-name \
560 --verify -q @{upstream} 2>/dev/null)
561 then
562 . git-parse-remote
563 error_on_missing_default_upstream "rebase" "rebase" \
c36d8eee 564 "against" "git rebase $(gettext '<branch>')"
15a147e6 565 fi
ad8261d2
JK
566
567 test "$fork_point" = auto && fork_point=t
15a147e6
MZ
568 ;;
569 *) upstream_name="$1"
4f407407
BG
570 if test "$upstream_name" = "-"
571 then
572 upstream_name="@{-1}"
573 fi
15a147e6
MZ
574 shift
575 ;;
576 esac
2e6e276d 577 upstream=$(peel_committish "${upstream_name}") ||
ca7de7b1 578 die "$(eval_gettext "invalid upstream '\$upstream_name'")"
190f5323
TR
579 upstream_arg="$upstream_name"
580else
df5df20c
CW
581 if test -z "$onto"
582 then
728fc79c
EP
583 empty_tree=$(git hash-object -t tree /dev/null)
584 onto=$(git commit-tree $empty_tree </dev/null)
df5df20c
CW
585 squash_onto="$onto"
586 fi
190f5323
TR
587 unset upstream_name
588 unset upstream
f2b6a199 589 test $# -gt 1 && usage
46df82d5 590 upstream_arg=--root
190f5323 591fi
32d99544 592
a1bf91e0 593# Make sure the branch to rebase onto is valid.
6bb4e485 594onto_name=${onto-"$upstream_name"}
9f21e97d
NS
595case "$onto_name" in
596*...*)
597 if left=${onto_name%...*} right=${onto_name#*...} &&
598 onto=$(git merge-base --all ${left:-HEAD} ${right:-HEAD})
599 then
600 case "$onto" in
601 ?*"$LF"?*)
c7108bf9 602 die "$(eval_gettext "\$onto_name: there are more than one merge bases")"
9f21e97d
NS
603 ;;
604 '')
c7108bf9 605 die "$(eval_gettext "\$onto_name: there is no merge base")"
9f21e97d
NS
606 ;;
607 esac
608 else
c7108bf9 609 die "$(eval_gettext "\$onto_name: there is no merge base")"
9f21e97d
NS
610 fi
611 ;;
612*)
2e6e276d 613 onto=$(peel_committish "$onto_name") ||
c7108bf9 614 die "$(eval_gettext "Does not point to a valid commit: \$onto_name")"
9f21e97d
NS
615 ;;
616esac
a1bf91e0 617
0cb06644 618# If the branch to rebase is given, that is the branch we will rebase
3a9156ad 619# $branch_name -- branch/commit being rebased, or HEAD (already detached)
0cb06644
JH
620# $orig_head -- commit object name of tip of the branch before rebasing
621# $head_name -- refs/heads/<that-branch> or "detached HEAD"
622switch_to=
59e6b23a 623case "$#" in
190f5323 6241)
0cb06644 625 # Is it "rebase other $branchname" or "rebase other $commit"?
190f5323
TR
626 branch_name="$1"
627 switch_to="$1"
0cb06644 628
3a9156ad
KS
629 # Is it a local branch?
630 if git show-ref --verify --quiet -- "refs/heads/$branch_name" &&
631 orig_head=$(git rev-parse -q --verify "refs/heads/$branch_name")
0cb06644 632 then
3a9156ad
KS
633 head_name="refs/heads/$branch_name"
634 # If not is it a valid ref (branch or commit)?
635 elif orig_head=$(git rev-parse -q --verify "$branch_name")
0cb06644
JH
636 then
637 head_name="detached HEAD"
3a9156ad 638
0cb06644 639 else
ca7de7b1 640 die "$(eval_gettext "fatal: no such branch/commit '\$branch_name'")"
0cb06644 641 fi
e646c9c8 642 ;;
f2b6a199 6430)
0cb06644 644 # Do not need to switch branches, we are already on it.
728fc79c 645 if branch_name=$(git symbolic-ref -q HEAD)
bcf31618 646 then
0cb06644 647 head_name=$branch_name
728fc79c 648 branch_name=$(expr "z$branch_name" : 'zrefs/heads/\(.*\)')
bcf31618 649 else
0cb06644 650 head_name="detached HEAD"
3a9156ad 651 branch_name=HEAD
bcf31618 652 fi
ea709800 653 orig_head=$(git rev-parse --verify HEAD) || exit
e646c9c8 654 ;;
f2b6a199
MZ
655*)
656 die "BUG: unexpected number of arguments left to parse"
657 ;;
59e6b23a
JH
658esac
659
ad8261d2
JK
660if test "$fork_point" = t
661then
bb3f4583
JK
662 new_upstream=$(git merge-base --fork-point "$upstream_name" \
663 "${switch_to:-HEAD}")
ad8261d2
JK
664 if test -n "$new_upstream"
665 then
1e0dacdb 666 restrict_revision=$new_upstream
ad8261d2
JK
667 fi
668fi
669
58794775
RR
670if test "$autostash" = true && ! (require_clean_work_tree) 2>/dev/null
671then
672 stash_sha1=$(git stash create "autostash") ||
673 die "$(gettext 'Cannot autostash')"
674
675 mkdir -p "$state_dir" &&
676 echo $stash_sha1 >"$state_dir/autostash" &&
677 stash_abbrev=$(git rev-parse --short $stash_sha1) &&
678 echo "$(eval_gettext 'Created autostash: $stash_abbrev')" &&
679 git reset --hard
680fi
681
c7108bf9 682require_clean_work_tree "rebase" "$(gettext "Please commit or stash them.")"
8f9bfb64 683
cb82a05d
MZ
684# Now we are rebasing commits $upstream..$orig_head (or with --root,
685# everything leading up to $orig_head) on top of $onto
e646c9c8 686
1308c17b 687# Check if we are already based on $onto with linear history,
cc1453e1
MZ
688# but this should be done only when upstream and onto are the same
689# and if this is not an interactive rebase.
cb82a05d 690mb=$(git merge-base "$onto" "$orig_head")
68aa495b 691if test -z "$actually_interactive" && test "$upstream" = "$onto" &&
1e0dacdb 692 test "$mb" = "$onto" && test -z "$restrict_revision" &&
1308c17b 693 # linear history?
cb82a05d 694 ! (git rev-list --parents "$onto".."$orig_head" | sane_grep " .* ") > /dev/null
7f4bd5d8 695then
b2f82e05
SR
696 if test -z "$force_rebase"
697 then
698 # Lazily switch to the target branch if needed...
4b03df21
RR
699 test -z "$switch_to" ||
700 GIT_REFLOG_ACTION="$GIT_REFLOG_ACTION: checkout $switch_to" \
22946a94 701 git checkout -q "$switch_to" --
08e66700
KS
702 if test "$branch_name" = "HEAD" &&
703 ! git symbolic-ref -q HEAD
704 then
705 say "$(eval_gettext "HEAD is up to date.")"
706 else
707 say "$(eval_gettext "Current branch \$branch_name is up to date.")"
708 fi
96e2b99e 709 finish_rebase
b2f82e05
SR
710 exit 0
711 else
08e66700
KS
712 if test "$branch_name" = "HEAD" &&
713 ! git symbolic-ref -q HEAD
714 then
715 say "$(eval_gettext "HEAD is up to date, rebase forced.")"
716 else
717 say "$(eval_gettext "Current branch \$branch_name is up to date, rebase forced.")"
718 fi
b2f82e05 719 fi
7f4bd5d8
JH
720fi
721
8f9bfb64
MZ
722# If a hook exists, give it a chance to interrupt
723run_pre_rebase_hook "$upstream_arg" "$@"
724
a9c3821c
TAV
725if test -n "$diffstat"
726then
727 if test -n "$verbose"
728 then
8797f0f0
JS
729 if test -z "$mb"
730 then
731 echo "$(eval_gettext "Changes to \$onto:")"
732 else
733 echo "$(eval_gettext "Changes from \$mb to \$onto:")"
734 fi
a9c3821c 735 fi
8797f0f0 736 mb_tree="${mb:-$(git hash-object -t tree /dev/null)}"
a9c3821c 737 # We want color (if set), but no pager
8797f0f0 738 GIT_PAGER='' git diff --stat --summary "$mb_tree" "$onto"
a9c3821c
TAV
739fi
740
68aa495b
EN
741if test -z "$actually_interactive" && test "$mb" = "$orig_head"
742then
743 say "$(eval_gettext "Fast-forwarded \$branch_name to \$onto_name.")"
744 GIT_REFLOG_ACTION="$GIT_REFLOG_ACTION: checkout $onto_name" \
745 git checkout -q "$onto^0" || die "could not detach HEAD"
746 # If the $onto is a proper descendant of the tip of the branch, then
747 # we just fast-forwarded.
748 git update-ref ORIG_HEAD $orig_head
749 move_to_original_branch
750 finish_rebase
751 exit 0
752fi
753
6d98d0c0 754test -n "$interactive_rebase" && run_specific_rebase
f4107d9c
MZ
755
756# Detach HEAD and reset the tree
c7108bf9 757say "$(gettext "First, rewinding head to replay your work on top of it...")"
4b03df21
RR
758
759GIT_REFLOG_ACTION="$GIT_REFLOG_ACTION: checkout $onto_name" \
760 git checkout -q "$onto^0" || die "could not detach HEAD"
cb82a05d 761git update-ref ORIG_HEAD $orig_head
f4107d9c 762
190f5323
TR
763if test -n "$rebase_root"
764then
765 revisions="$onto..$orig_head"
766else
1e0dacdb 767 revisions="${restrict_revision-$upstream}..$orig_head"
190f5323
TR
768fi
769
fa99c1e1 770run_specific_rebase