Merge branch 'fk/usage'
[git/gitweb.git] / git-rebase.sh
blob8a5f44aa5e0a732b27a1fde307f77bc810574e7e
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE='<upstream> [<head>]'
7 . git-sh-setup
9 # Make sure we do not have .dotest
10 if mkdir .dotest
11 then
12 rmdir .dotest
13 else
14 echo >&2 '
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.'
19 exit 1
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)
31 case "$different" in
32 ?*) echo "$diff"
33 exit 1
35 esac
37 # If the branch to rebase is given, first switch to it.
38 case "$#" in
40 git-checkout "$2" || usage
41 esac
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"
48 then
49 echo >&2 "Current branch `git-symbolic-ref HEAD` is up to date."
50 exit 0
53 # Rewind the head to "$other"
54 git-reset --hard "$other"
55 git-format-patch -k --stdout --full-index "$other" ORIG_HEAD |
56 git am --binary -3 -k