3 # Copyright (c) 2006 Johannes E. Schindelin
7 # This script makes it easy to fix up commits in the middle of a series,
8 # and rearrange commits.
10 # The original idea comes from Eric W. Biederman, in
11 # http://article.gmane.org/gmane.comp.version-control.git/22407
13 USAGE
='(--continue | --abort | --skip | [--preserve-merges] [--verbose]
14 [--onto <branch>] <upstream> [<branch>])'
19 DOTEST
="$GIT_DIR/.dotest-merge"
20 TODO
="$DOTEST"/git-rebase-todo
23 SQUASH_MSG
="$DOTEST"/message-squash
24 REWRITTEN
="$DOTEST"/rewritten
28 test -d "$REWRITTEN" && PRESERVE_MERGES
=t
29 test -f "$DOTEST"/strategy
&& STRATEGY
="$(cat "$DOTEST"/strategy)"
30 test -f "$DOTEST"/verbose
&& VERBOSE
=t
39 "$@" > "$DOTEST"/output
2>&1
50 require_clean_work_tree
() {
51 # test if working tree is dirty
52 git rev-parse
--verify HEAD
> /dev
/null
&&
53 git update-index
--refresh &&
54 git diff-files
--quiet &&
55 git diff-index
--cached --quiet HEAD ||
56 die
"Working tree is dirty"
59 ORIG_REFLOG_ACTION
="$GIT_REFLOG_ACTION"
61 comment_for_reflog
() {
62 case "$ORIG_REFLOG_ACTION" in
64 GIT_REFLOG_ACTION
="rebase -i ($1)"
65 export GIT_REFLOG_ACTION
70 sed -e 1q
< "$TODO" >> "$DONE"
71 sed -e 1d
< "$TODO" >> "$TODO".new
72 mv -f "$TODO".new
"$TODO"
73 count
=$
(($
(wc -l < "$DONE")))
74 total
=$
(($count+$
(wc -l < "$TODO")))
75 printf "Rebasing (%d/%d)\r" $count $total
76 test -z "$VERBOSE" ||
echo
80 parent_sha1
=$
(git rev-parse
--verify "$1"^
2> /dev
/null
)
81 git
diff "$parent_sha1"..
"$1" > "$DOTEST"/patch
85 test -f "$DOTEST"/message ||
86 git cat-file commit
$sha1 |
sed "1,/^$/d" > "$DOTEST"/message
87 test -f "$DOTEST"/author-script ||
88 get_author_ident_from_commit
$sha1 > "$DOTEST"/author-script
99 case "$1" in -n) sha1
=$2 ;; *) sha1
=$1 ;; esac
100 output git rev-parse
--verify $sha1 || die
"Invalid commit name: $sha1"
101 test -d "$REWRITTEN" &&
102 pick_one_preserving_merges
"$@" && return
103 parent_sha1
=$
(git rev-parse
--verify $sha1^
2>/dev
/null
)
104 current_sha1
=$
(git rev-parse
--verify HEAD
)
105 if test $current_sha1 = $parent_sha1; then
106 output git
reset --hard $sha1
107 test "a$1" = a-n
&& output git
reset --soft $current_sha1
108 sha1
=$
(git rev-parse
--short $sha1)
109 output warn Fast forward to
$sha1
111 output git cherry-pick
$STRATEGY "$@"
115 pick_one_preserving_merges
() {
116 case "$1" in -n) sha1
=$2 ;; *) sha1
=$1 ;; esac
117 sha1
=$
(git rev-parse
$sha1)
119 if test -f "$DOTEST"/current-commit
121 current_commit
=$
(cat "$DOTEST"/current-commit
) &&
122 git rev-parse HEAD
> "$REWRITTEN"/$current_commit &&
123 rm "$DOTEST"/current-commit ||
124 die
"Cannot write current commit's replacement sha1"
127 # rewrite parents; if none were rewritten, we can fast-forward.
131 for p
in $
(git rev-list
--parents -1 $sha1 | cut
-d\
-f2-)
133 if test -f "$REWRITTEN"/$p
136 new_p
=$
(cat "$REWRITTEN"/$p)
137 test $p != $new_p && fast_forward
=f
138 case "$new_parents" in
140 ;; # do nothing; that parent is already there
142 new_parents
="$new_parents $new_p"
146 case $fast_forward in
148 output warn
"Fast forward to $sha1"
149 test $preserve=f
&& echo $sha1 > "$REWRITTEN"/$sha1
152 test "a$1" = a-n
&& die
"Refusing to squash a merge: $sha1"
154 first_parent
=$
(expr "$new_parents" : " \([^ ]*\)")
155 # detach HEAD to current parent
156 output git checkout
$first_parent 2> /dev
/null ||
157 die
"Cannot move HEAD to $first_parent"
159 echo $sha1 > "$DOTEST"/current-commit
160 case "$new_parents" in
163 author_script
=$
(get_author_ident_from_commit
$sha1)
164 eval "$author_script"
165 msg
="$(git cat-file commit $sha1 | \
166 sed -e '1,/^$/d' -e "s
/[\"\\]/\\\\&/g
")"
167 # NEEDSWORK: give rerere a chance
168 if ! output git merge
$STRATEGY -m "$msg" $new_parents
170 echo "$msg" > "$GIT_DIR"/MERGE_MSG
171 die Error redoing merge
$sha1
175 output git cherry-pick
$STRATEGY "$@" ||
176 die_with_patch
$sha1 "Could not pick $sha1"
183 *1[0-9]|
*[04-9]) echo "$1"th
;;
190 make_squash_message
() {
191 if test -f "$SQUASH_MSG"; then
192 COUNT
=$
(($
(sed -n "s/^# This is [^0-9]*\([0-9]\+\).*/\1/p" \
193 < "$SQUASH_MSG" |
tail -n 1)+1))
194 echo "# This is a combination of $COUNT commits."
195 sed -n "2,\$p" < "$SQUASH_MSG"
198 echo "# This is a combination of two commits."
199 echo "# The first commit's message is:"
201 git cat-file commit HEAD |
sed -e '1,/^$/d'
204 echo "# This is the $(nth_string $COUNT) commit message:"
206 git cat-file commit
$1 |
sed -e '1,/^$/d'
209 peek_next_command
() {
210 sed -n "1s/ .*$//p" < "$TODO"
214 test -f "$DOTEST"/message
&& rm "$DOTEST"/message
215 test -f "$DOTEST"/author-script
&& rm "$DOTEST"/author-script
216 read command sha1 rest
< "$TODO"
222 comment_for_reflog pick
226 die_with_patch
$sha1 "Could not apply $sha1... $rest"
229 comment_for_reflog edit
233 die_with_patch
$sha1 "Could not apply $sha1... $rest"
236 warn
"You can amend the commit now, with"
238 warn
" git commit --amend"
243 comment_for_reflog squash
245 test -z "$(grep -ve '^$' -e '^#' < $DONE)" &&
246 die
"Cannot 'squash' without a previous commit"
249 make_squash_message
$sha1 > "$MSG"
250 case "$(peek_next_command)" in
254 cp "$MSG" "$SQUASH_MSG"
259 test -f "$SQUASH_MSG" && rm "$SQUASH_MSG"
263 output git
reset --soft HEAD^
264 pick_one
-n $sha1 || failed
=t
265 author_script
=$
(get_author_ident_from_commit
$sha1)
266 echo "$author_script" > "$DOTEST"/author-script
269 # This is like --amend, but with a different message
270 eval "$author_script"
271 export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE
272 $USE_OUTPUT git commit
-F "$MSG" $EDIT_COMMIT
275 cp "$MSG" "$GIT_DIR"/MERGE_MSG
277 warn
"Could not apply $sha1... $rest"
278 die_with_patch
$sha1 ""
282 warn
"Unknown command: $command $sha1 $rest"
283 die_with_patch
$sha1 "Please fix this in the file $TODO."
285 test -s "$TODO" && return
287 comment_for_reflog finish
&&
288 HEADNAME
=$
(cat "$DOTEST"/head-name
) &&
289 OLDHEAD
=$
(cat "$DOTEST"/head) &&
290 SHORTONTO
=$
(git rev-parse
--short $
(cat "$DOTEST"/onto
)) &&
291 if test -d "$REWRITTEN"
293 test -f "$DOTEST"/current-commit
&&
294 current_commit
=$
(cat "$DOTEST"/current-commit
) &&
295 git rev-parse HEAD
> "$REWRITTEN"/$current_commit
296 NEWHEAD
=$
(cat "$REWRITTEN"/$OLDHEAD)
298 NEWHEAD
=$
(git rev-parse HEAD
)
300 message
="$GIT_REFLOG_ACTION: $HEADNAME onto $SHORTONTO)" &&
301 git update-ref
-m "$message" $HEADNAME $NEWHEAD $OLDHEAD &&
302 git symbolic-ref HEAD
$HEADNAME && {
303 test ! -f "$DOTEST"/verbose ||
304 git
diff --stat $
(cat "$DOTEST"/head)..HEAD
307 warn
"Successfully rebased and updated $HEADNAME."
319 while case $# in 0) break ;; esac
323 comment_for_reflog
continue
325 test -d "$DOTEST" || die
"No interactive rebase running"
327 # commit if necessary
328 git rev-parse
--verify HEAD
> /dev
/null
&&
329 git update-index
--refresh &&
330 git diff-files
--quiet &&
331 ! git diff-index
--cached --quiet HEAD
&&
332 .
"$DOTEST"/author-script
&&
333 export GIT_AUTHOR_NAME GIT_AUTHOR_NAME GIT_AUTHOR_DATE
&&
334 git commit
-F "$DOTEST"/message
-e
336 require_clean_work_tree
340 comment_for_reflog abort
342 test -d "$DOTEST" || die
"No interactive rebase running"
344 HEADNAME
=$
(cat "$DOTEST"/head-name
)
345 HEAD
=$
(cat "$DOTEST"/head)
346 git symbolic-ref HEAD
$HEADNAME &&
347 output git
reset --hard $HEAD &&
352 comment_for_reflog skip
354 test -d "$DOTEST" || die
"No interactive rebase running"
356 output git
reset --hard && do_rest
362 STRATEGY
="-s `expr "z
$1" : 'z-[^=]*=\(.*\)'`" ;;
371 # we use merge anyway
374 die
"Interactive rebase uses merge, so $1 does not make sense"
379 -p|
--preserve-merges)
390 die
"Interactive rebase already started"
392 git var GIT_COMMITTER_IDENT
>/dev
/null ||
393 die
"You need to set your committer info first"
395 comment_for_reflog start
400 ONTO
=$
(git rev-parse
--verify "$2") ||
401 die
"Does not point to a valid commit: $2"
406 require_clean_work_tree
408 mkdir
"$DOTEST" || die
"Could not create temporary $DOTEST"
411 output git show-ref
--verify --quiet "refs/heads/$2" ||
412 die
"Invalid branchname: $2"
413 output git checkout
"$2" ||
414 die
"Could not checkout $2"
417 HEAD
=$
(git rev-parse
--verify HEAD
) || die
"No HEAD?"
418 UPSTREAM
=$
(git rev-parse
--verify "$1") || die
"Invalid base"
420 test -z "$ONTO" && ONTO
=$UPSTREAM
422 : > "$DOTEST"/interactive || die
"Could not mark as interactive"
423 git symbolic-ref HEAD
> "$DOTEST"/head-name ||
424 die
"Could not get HEAD"
426 echo $HEAD > "$DOTEST"/head
427 echo $UPSTREAM > "$DOTEST"/upstream
428 echo $ONTO > "$DOTEST"/onto
429 test -z "$STRATEGY" ||
echo "$STRATEGY" > "$DOTEST"/strategy
430 test t
= "$VERBOSE" && : > "$DOTEST"/verbose
431 if test t
= "$PRESERVE_MERGES"
433 # $REWRITTEN contains files for each commit that is
434 # reachable by at least one merge base of $HEAD and
435 # $UPSTREAM. They are not necessarily rewritten, but
436 # their children might be.
437 # This ensures that commits on merged, but otherwise
438 # unrelated side branches are left alone. (Think "X"
439 # in the man page's example.)
440 mkdir
"$REWRITTEN" &&
441 for c
in $
(git merge-base
--all $HEAD $UPSTREAM)
443 echo $ONTO > "$REWRITTEN"/$c ||
444 die
"Could not init rewritten commits"
448 MERGES_OPTION
=--no-merges
451 SHORTUPSTREAM
=$
(git rev-parse
--short $UPSTREAM)
452 SHORTHEAD
=$
(git rev-parse
--short $HEAD)
453 SHORTONTO
=$
(git rev-parse
--short $ONTO)
455 # Rebasing $SHORTUPSTREAM..$SHORTHEAD onto $SHORTONTO
459 # edit = use commit, but stop for amending
460 # squash = use commit, but meld into previous commit
462 # If you remove a line here THAT COMMIT WILL BE LOST.
465 git rev-list
$MERGES_OPTION --pretty=oneline
--abbrev-commit \
466 --abbrev=7 --reverse --left-right --cherry-pick \
467 $UPSTREAM...
$HEAD | \
468 sed -n "s/^>/pick /p" >> "$TODO"
470 test -z "$(grep -ve '^$' -e '^#' < $TODO)" &&
471 die_abort
"Nothing to do"
473 cp "$TODO" "$TODO".backup
474 git_editor
"$TODO" ||
475 die
"Could not execute editor"
477 test -z "$(grep -ve '^$' -e '^#' < $TODO)" &&
478 die_abort
"Nothing to do"
480 output git checkout
$ONTO && do_rest