Merge fixes up to 1.2.1
[git/debian.git] / git-rebase.sh
blobf84160d32456820765e5b4f899a2fdd0aa5bf9cd
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE='<upstream> [<head>]'
7 . git-sh-setup
9 case $# in 1|2) ;; *) usage ;; esac
11 # Make sure we do not have .dotest
12 if mkdir .dotest
13 then
14 rmdir .dotest
15 else
16 echo >&2 '
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.'
21 exit 1
24 # The tree must be really really clean.
25 git-update-index --refresh || exit
26 diff=$(git-diff-index --cached --name-status -r HEAD)
27 case "$diff" in
28 ?*) echo "$diff"
29 exit 1
31 esac
33 # The other head is given. Make sure it is valid.
34 other=$(git-rev-parse --verify "$1^0") || usage
36 # Make sure the branch to rebase is valid.
37 head=$(git-rev-parse --verify "${2-HEAD}^0") || exit
39 # If a hook exists, give it a chance to interrupt
40 if test -x "$GIT_DIR/hooks/pre-rebase"
41 then
42 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
43 echo >&2 "The pre-rebase hook refused to rebase."
44 exit 1
48 # If the branch to rebase is given, first switch to it.
49 case "$#" in
51 git-checkout "$2" || usage
52 esac
54 mb=$(git-merge-base "$other" "$head")
56 # Check if we are already based on $other.
57 if test "$mb" = "$other"
58 then
59 echo >&2 "Current branch `git-symbolic-ref HEAD` is up to date."
60 exit 0
63 # Rewind the head to "$other"
64 git-reset --hard "$other"
66 # If the $other is a proper descendant of the tip of the branch, then
67 # we just fast forwarded.
68 if test "$mb" = "$head"
69 then
70 echo >&2 "Fast-forwarded $head to $other."
71 exit 0
74 git-format-patch -k --stdout --full-index "$other" ORIG_HEAD |
75 git am --binary -3 -k