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