]> git.ipfire.org Git - thirdparty/git.git/blob - git-rebase.sh
GIT 0.99.9l aka 1.0rc4
[thirdparty/git.git] / git-rebase.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Junio C Hamano.
4 #
5
6 . git-sh-setup
7
8 # Make sure we do not have .dotest
9 if mkdir .dotest
10 then
11 rmdir .dotest
12 else
13 echo >&2 '
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.'
18 exit 1
19 fi
20
21 # The other head is given. Make sure it is valid.
22 other=$(git-rev-parse --verify "$1^0") || exit
23
24 # Make sure we have HEAD that is valid.
25 head=$(git-rev-parse --verify "HEAD^0") || exit
26
27 # The tree must be really really clean.
28 git-update-index --refresh || exit
29 diff=$(git-diff-index --cached --name-status -r HEAD)
30 case "$different" in
31 ?*) echo "$diff"
32 exit 1
33 ;;
34 esac
35
36 # If the branch to rebase is given, first switch to it.
37 case "$#" in
38 2)
39 git-checkout "$2" || exit
40 esac
41
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"
47 then
48 echo >&2 "Current branch `git-symbolic-ref HEAD` is up to date."
49 exit 0
50 fi
51
52 # Rewind the head to "$other"
53 git-reset --hard "$other"
54 git-format-patch -k --stdout --full-index "$other" ORIG_HEAD |
55 git am --binary -3 -k