rebase: make -v a tiny bit more verbose
[git/jrn.git] / git-rebase.sh
blob42d635bc298edd74bcd2100b1115195a74b3f115
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE='[--interactive | -i] [-v] [--force-rebase | -f] [--no-ff] [--onto <newbase>] (<upstream>|--root) [<branch>] [--quiet | -q]'
7 LONG_USAGE='git-rebase replaces <branch> with a new branch of the
8 same name. When the --onto option is provided the new branch starts
9 out with a HEAD equal to <newbase>, otherwise it is equal to <upstream>
10 It then attempts to create a new commit for each commit from the original
11 <branch> that does not exist in the <upstream> branch.
13 It is possible that a merge failure will prevent this process from being
14 completely automatic. You will have to resolve any such merge failure
15 and run git rebase --continue. Another option is to bypass the commit
16 that caused the merge failure with git rebase --skip. To restore the
17 original <branch> and remove the .git/rebase-apply working files, use the
18 command git rebase --abort instead.
20 Note that if <branch> is not specified on the command line, the
21 currently checked out branch is used.
23 Example: git-rebase master~1 topic
25 A---B---C topic A'\''--B'\''--C'\'' topic
26 / --> /
27 D---E---F---G master D---E---F---G master
30 SUBDIRECTORY_OK=Yes
31 OPTIONS_SPEC=
32 . git-sh-setup
33 set_reflog_action rebase
34 require_work_tree
35 cd_to_toplevel
37 LF='
39 ok_to_skip_pre_rebase=
40 resolvemsg="
41 When you have resolved this problem run \"git rebase --continue\".
42 If you would prefer to skip this patch, instead run \"git rebase --skip\".
43 To restore the original branch and stop rebasing run \"git rebase --abort\".
45 unset onto
46 strategy=
47 strategy_opts=
48 do_merge=
49 merge_dir="$GIT_DIR"/rebase-merge
50 apply_dir="$GIT_DIR"/rebase-apply
51 verbose=
52 diffstat=
53 test "$(git config --bool rebase.stat)" = true && diffstat=t
54 git_am_opt=
55 rebase_root=
56 force_rebase=
57 allow_rerere_autoupdate=
58 # Non-empty if a rebase was in progress when 'git rebase' was invoked
59 in_progress=
60 # One of {am, merge, interactive}
61 type=
62 # One of {"$GIT_DIR"/rebase-apply, "$GIT_DIR"/rebase-merge}
63 state_dir=
64 # One of {'', continue, skip, abort}, as parsed from command line
65 action=
66 preserve_merges=
67 autosquash=
68 test "$(git config --bool rebase.autosquash)" = "true" && autosquash=t
70 read_basic_state () {
71 head_name=$(cat "$state_dir"/head-name) &&
72 onto=$(cat "$state_dir"/onto) &&
73 orig_head=$(cat "$state_dir"/orig-head) &&
74 GIT_QUIET=$(cat "$state_dir"/quiet)
77 output () {
78 case "$verbose" in
79 '')
80 output=$("$@" 2>&1 )
81 status=$?
82 test $status != 0 && printf "%s\n" "$output"
83 return $status
86 "$@"
88 esac
91 move_to_original_branch () {
92 case "$head_name" in
93 refs/*)
94 message="rebase finished: $head_name onto $onto"
95 git update-ref -m "$message" \
96 $head_name $(git rev-parse HEAD) $orig_head &&
97 git symbolic-ref HEAD $head_name ||
98 die "Could not move back to $head_name"
100 esac
103 run_specific_rebase () {
104 if [ "$interactive_rebase" = implied ]; then
105 GIT_EDITOR=:
106 export GIT_EDITOR
108 . git-rebase--$type
111 run_pre_rebase_hook () {
112 if test -z "$ok_to_skip_pre_rebase" &&
113 test -x "$GIT_DIR/hooks/pre-rebase"
114 then
115 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
116 die "The pre-rebase hook refused to rebase."
120 test -f "$apply_dir"/applying &&
121 die 'It looks like git-am is in progress. Cannot rebase.'
123 if test -d "$apply_dir"
124 then
125 type=am
126 state_dir="$apply_dir"
127 elif test -d "$merge_dir"
128 then
129 if test -f "$merge_dir"/interactive
130 then
131 type=interactive
132 interactive_rebase=explicit
133 else
134 type=merge
136 state_dir="$merge_dir"
138 test -n "$type" && in_progress=t
140 total_argc=$#
141 while test $# != 0
143 case "$1" in
144 --no-verify)
145 ok_to_skip_pre_rebase=yes
147 --verify)
148 ok_to_skip_pre_rebase=
150 --continue|--skip|--abort)
151 test $total_argc -eq 1 || usage
152 action=${1##--}
154 --onto)
155 test 2 -le "$#" || usage
156 onto="$2"
157 shift
159 -i|--interactive)
160 interactive_rebase=explicit
162 -p|--preserve-merges)
163 preserve_merges=t
164 test -z "$interactive_rebase" && interactive_rebase=implied
166 --autosquash)
167 autosquash=t
169 --no-autosquash)
170 autosquash=
172 -M|-m|--m|--me|--mer|--merg|--merge)
173 do_merge=t
175 -X*|--strategy-option*)
176 case "$#,$1" in
177 1,-X|1,--strategy-option)
178 usage ;;
179 *,-X|*,--strategy-option)
180 newopt="$2"
181 shift ;;
182 *,--strategy-option=*)
183 newopt="$(expr " $1" : ' --strategy-option=\(.*\)')" ;;
184 *,-X*)
185 newopt="$(expr " $1" : ' -X\(.*\)')" ;;
186 1,*)
187 usage ;;
188 esac
189 strategy_opts="$strategy_opts $(git rev-parse --sq-quote "--$newopt")"
190 do_merge=t
191 test -z "$strategy" && strategy=recursive
193 -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
194 --strateg=*|--strategy=*|\
195 -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
196 case "$#,$1" in
197 *,*=*)
198 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
199 1,*)
200 usage ;;
202 strategy="$2"
203 shift ;;
204 esac
205 do_merge=t
207 -n|--no-stat)
208 diffstat=
210 --stat)
211 diffstat=t
213 -v|--verbose)
214 verbose=t
215 diffstat=t
216 GIT_QUIET=
218 -q|--quiet)
219 GIT_QUIET=t
220 git_am_opt="$git_am_opt -q"
221 verbose=
222 diffstat=
224 --whitespace=*)
225 git_am_opt="$git_am_opt $1"
226 case "$1" in
227 --whitespace=fix|--whitespace=strip)
228 force_rebase=t
230 esac
232 --ignore-whitespace)
233 git_am_opt="$git_am_opt $1"
235 --committer-date-is-author-date|--ignore-date)
236 git_am_opt="$git_am_opt $1"
237 force_rebase=t
239 -C*)
240 git_am_opt="$git_am_opt $1"
242 --root)
243 rebase_root=t
245 -f|--f|--fo|--for|--forc|--force|--force-r|--force-re|--force-reb|--force-reba|--force-rebas|--force-rebase|--no-ff)
246 force_rebase=t
248 --rerere-autoupdate|--no-rerere-autoupdate)
249 allow_rerere_autoupdate="$1"
252 usage
255 break
257 esac
258 shift
259 done
260 test $# -gt 2 && usage
262 if test -n "$action"
263 then
264 test -z "$in_progress" && die "No rebase in progress?"
265 test "$type" = interactive && run_specific_rebase
268 case "$action" in
269 continue)
270 git update-index --ignore-submodules --refresh &&
271 git diff-files --quiet --ignore-submodules || {
272 echo "You must edit all merge conflicts and then"
273 echo "mark them as resolved using git add"
274 exit 1
276 read_basic_state
277 run_specific_rebase
279 skip)
280 output git reset --hard HEAD || exit $?
281 read_basic_state
282 run_specific_rebase
284 abort)
285 git rerere clear
286 read_basic_state
287 case "$head_name" in
288 refs/*)
289 git symbolic-ref HEAD $head_name ||
290 die "Could not move back to $head_name"
292 esac
293 output git reset --hard $orig_head
294 rm -r "$state_dir"
295 exit
297 esac
299 # Make sure no rebase is in progress
300 if test -n "$in_progress"
301 then
302 die '
303 It seems that there is already a '"${state_dir##*/}"' directory, and
304 I wonder if you are in the middle of another rebase. If that is the
305 case, please try
306 git rebase (--continue | --abort | --skip)
307 If that is not the case, please
308 rm -fr '"$state_dir"'
309 and run me again. I am stopping in case you still have something
310 valuable there.'
313 test $# -eq 0 && test -z "$rebase_root" && usage
315 if test -n "$interactive_rebase"
316 then
317 type=interactive
318 state_dir="$merge_dir"
319 elif test -n "$do_merge"
320 then
321 type=merge
322 state_dir="$merge_dir"
323 else
324 type=am
325 state_dir="$apply_dir"
328 if test -z "$rebase_root"
329 then
330 # The upstream head must be given. Make sure it is valid.
331 upstream_name="$1"
332 shift
333 upstream=`git rev-parse --verify "${upstream_name}^0"` ||
334 die "invalid upstream $upstream_name"
335 upstream_arg="$upstream_name"
336 else
337 test -z "$onto" && die "You must specify --onto when using --root"
338 unset upstream_name
339 unset upstream
340 upstream_arg=--root
343 # Make sure the branch to rebase onto is valid.
344 onto_name=${onto-"$upstream_name"}
345 case "$onto_name" in
346 *...*)
347 if left=${onto_name%...*} right=${onto_name#*...} &&
348 onto=$(git merge-base --all ${left:-HEAD} ${right:-HEAD})
349 then
350 case "$onto" in
351 ?*"$LF"?*)
352 die "$onto_name: there are more than one merge bases"
355 die "$onto_name: there is no merge base"
357 esac
358 else
359 die "$onto_name: there is no merge base"
363 onto=$(git rev-parse --verify "${onto_name}^0") ||
364 die "Does not point to a valid commit: $1"
366 esac
368 # If the branch to rebase is given, that is the branch we will rebase
369 # $branch_name -- branch being rebased, or HEAD (already detached)
370 # $orig_head -- commit object name of tip of the branch before rebasing
371 # $head_name -- refs/heads/<that-branch> or "detached HEAD"
372 switch_to=
373 case "$#" in
375 # Is it "rebase other $branchname" or "rebase other $commit"?
376 branch_name="$1"
377 switch_to="$1"
379 if git show-ref --verify --quiet -- "refs/heads/$1" &&
380 orig_head=$(git rev-parse -q --verify "refs/heads/$1")
381 then
382 head_name="refs/heads/$1"
383 elif orig_head=$(git rev-parse -q --verify "$1")
384 then
385 head_name="detached HEAD"
386 else
387 echo >&2 "fatal: no such branch: $1"
388 usage
392 # Do not need to switch branches, we are already on it.
393 if branch_name=`git symbolic-ref -q HEAD`
394 then
395 head_name=$branch_name
396 branch_name=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'`
397 else
398 head_name="detached HEAD"
399 branch_name=HEAD ;# detached
401 orig_head=$(git rev-parse --verify "${branch_name}^0") || exit
403 esac
405 require_clean_work_tree "rebase" "Please commit or stash them."
407 # Now we are rebasing commits $upstream..$orig_head (or with --root,
408 # everything leading up to $orig_head) on top of $onto
410 # Check if we are already based on $onto with linear history,
411 # but this should be done only when upstream and onto are the same
412 # and if this is not an interactive rebase.
413 mb=$(git merge-base "$onto" "$orig_head")
414 if test "$type" != interactive && test "$upstream" = "$onto" &&
415 test "$mb" = "$onto" &&
416 # linear history?
417 ! (git rev-list --parents "$onto".."$orig_head" | sane_grep " .* ") > /dev/null
418 then
419 if test -z "$force_rebase"
420 then
421 # Lazily switch to the target branch if needed...
422 test -z "$switch_to" || git checkout "$switch_to" --
423 say "Current branch $branch_name is up to date."
424 exit 0
425 else
426 say "Current branch $branch_name is up to date, rebase forced."
430 # If a hook exists, give it a chance to interrupt
431 run_pre_rebase_hook "$upstream_arg" "$@"
433 if test -n "$diffstat"
434 then
435 if test -n "$verbose"
436 then
437 echo "Changes from $mb to $onto:"
439 # We want color (if set), but no pager
440 GIT_PAGER='' git diff --stat --summary "$mb" "$onto"
443 test "$type" = interactive && run_specific_rebase
445 # Detach HEAD and reset the tree
446 say "First, rewinding head to replay your work on top of it..."
447 git checkout -q "$onto^0" || die "could not detach HEAD"
448 git update-ref ORIG_HEAD $orig_head
450 # If the $onto is a proper descendant of the tip of the branch, then
451 # we just fast-forwarded.
452 if test "$mb" = "$orig_head"
453 then
454 say "Fast-forwarded $branch_name to $onto_name."
455 move_to_original_branch
456 exit 0
459 if test -n "$rebase_root"
460 then
461 revisions="$onto..$orig_head"
462 else
463 revisions="$upstream..$orig_head"
466 run_specific_rebase