3 # Copyright (c) 2005 Junio C Hamano.
6 USAGE
='[--onto <newbase>] <upstream> [<branch>]'
7 LONG_USAGE
='git-rebase applies to <upstream> (or optionally to <newbase>) commits
8 from <branch> that do not appear in <upstream>. When <branch> is not
9 specified it defaults to the current branch (HEAD).
11 When git-rebase is complete, <branch> will be updated to point to the
12 newly created line of commit objects, so the previous line will not be
13 accessible unless there are other references to it already.
15 Assuming the following history:
21 The result of the following command:
23 git-rebase --onto master~1 master topic
27 A'\''--B'\''--C'\'' topic
35 while case "$#" in 0) break ;; esac
39 test 2 -le "$#" || usage
53 # Make sure we do not have .dotest
59 It seems that I cannot create a .dotest directory, and I wonder if you
60 are in the middle of patch application or another rebase. If that is not
61 the case, please rm -fr .dotest and run me again. I am stopping in case
62 you still have something valuable there.'
66 # The tree must be really really clean.
67 git-update-index
--refresh ||
exit
68 diff=$
(git-diff-index
--cached --name-status -r HEAD
)
75 # The upstream head must be given. Make sure it is valid.
77 upstream
=`git rev-parse --verify "${upstream_name}^0"` ||
78 die
"invalid upstream $upstream_name"
80 # If a hook exists, give it a chance to interrupt
81 if test -x "$GIT_DIR/hooks/pre-rebase"
83 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} ||
{
84 echo >&2 "The pre-rebase hook refused to rebase."
89 # If the branch to rebase is given, first switch to it.
93 git-checkout
"$2" || usage
96 branch_name
=`git symbolic-ref HEAD` || die
"No current branch"
97 branch_name
=`expr "$branch_name" : 'refs/heads/\(.*\)'`
100 branch
=$
(git-rev-parse
--verify "${branch_name}^0") ||
exit
102 # Make sure the branch to rebase onto is valid.
103 onto_name
=${newbase-"$upstream_name"}
104 onto
=$
(git-rev-parse
--verify "${onto_name}^0") ||
exit
106 # Now we are rebasing commits $upstream..$branch on top of $onto
108 # Check if we are already based on $onto, but this should be
109 # done only when upstream and onto are the same.
110 if test "$upstream" = "onto"
112 mb
=$
(git-merge-base
"$onto" "$branch")
113 if test "$mb" = "$onto"
115 echo >&2 "Current branch $branch_name is up to date."
120 # Rewind the head to "$onto"; this saves our current head in ORIG_HEAD.
121 git-reset
--hard "$onto"
123 # If the $onto is a proper descendant of the tip of the branch, then
124 # we just fast forwarded.
125 if test "$mb" = "$onto"
127 echo >&2 "Fast-forwarded $branch to $newbase."
131 git-format-patch
-k --stdout --full-index "$upstream" ORIG_HEAD |
132 git am
--binary -3 -k