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