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