3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE
='<upstream> [<head>]'
9 # Make sure we do not have .dotest
15 It seems that I cannot create a .dotest directory, and I wonder if you
16 are in the middle of patch application or another rebase. If that is not
17 the case, please rm -fr .dotest and run me again. I am stopping in case
18 you still have something valuable there.'
22 # The other head is given. Make sure it is valid.
23 other
=$
(git-rev-parse
--verify "$1^0") || usage
25 # Make sure we have HEAD that is valid.
26 head=$
(git-rev-parse
--verify "HEAD^0") ||
exit
28 # The tree must be really really clean.
29 git-update-index
--refresh ||
exit
30 diff=$
(git-diff-index
--cached --name-status -r HEAD
)
37 # If the branch to rebase is given, first switch to it.
40 git-checkout
"$2" || usage
43 # If the HEAD is a proper descendant of $other, we do not even need
44 # to rebase. Make sure we do not do needless rebase. In such a
45 # case, merge-base should be the same as "$other".
46 mb
=$
(git-merge-base
"$other" "$head")
47 if test "$mb" = "$other"
49 echo >&2 "Current branch `git-symbolic-ref HEAD` is up to date."
53 # Rewind the head to "$other"
54 git-reset
--hard "$other"
55 git-format-patch
-k --stdout --full-index "$other" ORIG_HEAD |