Allow saving an object from a pipe
[git/dscho.git] / git-rebase.sh
blob638ff0dbc01cbf87edf1af511d5caac5ee4f1d66
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano.
6 . git-sh-setup
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
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)
30 case "$different" in
31 ?*) echo "$diff"
32 exit 1
34 esac
36 # If the branch to rebase is given, first switch to it.
37 case "$#" in
39 git-checkout "$2" || exit
40 esac
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
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