blob: 25530dfdc5ba3b88ba9f45393d3aace8faa89472 [file] [log] [blame]
Junio C Hamano59e6b232005-06-25 02:23:43 -07001#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano.
4#
5
Robert Shearmanb7587892006-10-03 17:29:31 +01006USAGE='[-v] [--onto <newbase>] <upstream> [<branch>]'
sean031321c2006-04-26 10:49:38 -04007LONG_USAGE='git-rebase replaces <branch> with a new branch of the
8same name. When the --onto option is provided the new branch starts
9out with a HEAD equal to <newbase>, otherwise it is equal to <upstream>
10It then attempts to create a new commit for each commit from the original
11<branch> that does not exist in the <upstream> branch.
Carl Worth69a60af2006-02-21 17:10:12 -080012
sean031321c2006-04-26 10:49:38 -040013It is possible that a merge failure will prevent this process from being
14completely automatic. You will have to resolve any such merge failure
Seancc120052006-05-13 23:34:08 -040015and run git rebase --continue. Another option is to bypass the commit
16that caused the merge failure with git rebase --skip. To restore the
17original <branch> and remove the .dotest working files, use the command
18git rebase --abort instead.
Carl Worth69a60af2006-02-21 17:10:12 -080019
sean031321c2006-04-26 10:49:38 -040020Note that if <branch> is not specified on the command line, the
21currently checked out branch is used. You must be in the top
22directory of your project to start (or continue) a rebase.
Junio C Hamanoe646c9c2006-02-14 14:42:05 -080023
sean031321c2006-04-26 10:49:38 -040024Example: git-rebase master~1 topic
Junio C Hamanoe646c9c2006-02-14 14:42:05 -080025
sean031321c2006-04-26 10:49:38 -040026 A---B---C topic A'\''--B'\''--C'\'' topic
27 / --> /
28 D---E---F---G master D---E---F---G master
Junio C Hamanoe646c9c2006-02-14 14:42:05 -080029'
Junio C Hamanoae2b0f12005-11-24 00:12:11 -080030. git-sh-setup
Junio C Hamano4282c4f2005-08-07 15:51:09 -070031
Seancc120052006-05-13 23:34:08 -040032RESOLVEMSG="
33When you have resolved this problem run \"git rebase --continue\".
34If you would prefer to skip this patch, instead run \"git rebase --skip\".
35To restore the original branch and stop rebasing run \"git rebase --abort\".
36"
Junio C Hamanoe646c9c2006-02-14 14:42:05 -080037unset newbase
Junio C Hamanoa06f6782006-09-24 19:49:47 -070038strategy=recursive
Eric Wong58634db2006-06-21 03:04:41 -070039do_merge=
40dotest=$GIT_DIR/.dotest-merge
41prec=4
Robert Shearmanb7587892006-10-03 17:29:31 +010042verbose=
Eric Wong58634db2006-06-21 03:04:41 -070043
44continue_merge () {
45 test -n "$prev_head" || die "prev_head must be defined"
46 test -d "$dotest" || die "$dotest directory does not exist"
47
48 unmerged=$(git-ls-files -u)
49 if test -n "$unmerged"
50 then
51 echo "You still have unmerged paths in your index"
52 echo "did you forget update-index?"
Eric Wong66eb64c2006-06-28 02:11:06 -070053 die "$RESOLVEMSG"
Eric Wong58634db2006-06-21 03:04:41 -070054 fi
55
56 if test -n "`git-diff-index HEAD`"
57 then
Eric Wongf0ef0592006-06-28 03:24:23 -070058 if ! git-commit -C "`cat $dotest/current`"
59 then
60 echo "Commit failed, please do not call \"git commit\""
61 echo "directly, but instead do one of the following: "
62 die "$RESOLVEMSG"
63 fi
Eric Wong9e4bc7d2006-06-24 18:29:48 -070064 printf "Committed: %0${prec}d" $msgnum
Eric Wong58634db2006-06-21 03:04:41 -070065 else
Eric Wong9e4bc7d2006-06-24 18:29:48 -070066 printf "Already applied: %0${prec}d" $msgnum
Eric Wong58634db2006-06-21 03:04:41 -070067 fi
Eric Wong9e4bc7d2006-06-24 18:29:48 -070068 echo ' '`git-rev-list --pretty=oneline -1 HEAD | \
69 sed 's/^[a-f0-9]\+ //'`
Eric Wong58634db2006-06-21 03:04:41 -070070
71 prev_head=`git-rev-parse HEAD^0`
Eric Wong58634db2006-06-21 03:04:41 -070072 # save the resulting commit so we can read-tree on it later
Eric Wong58634db2006-06-21 03:04:41 -070073 echo "$prev_head" > "$dotest/prev_head"
74
75 # onto the next patch:
76 msgnum=$(($msgnum + 1))
Junio C Hamano5887ac82006-06-22 01:44:54 -070077 echo "$msgnum" >"$dotest/msgnum"
Eric Wong58634db2006-06-21 03:04:41 -070078}
79
80call_merge () {
Junio C Hamano5887ac82006-06-22 01:44:54 -070081 cmt="$(cat $dotest/cmt.$1)"
Eric Wong58634db2006-06-21 03:04:41 -070082 echo "$cmt" > "$dotest/current"
83 git-merge-$strategy "$cmt^" -- HEAD "$cmt"
84 rv=$?
85 case "$rv" in
86 0)
Eric Wong9e4bc7d2006-06-24 18:29:48 -070087 return
Eric Wong58634db2006-06-21 03:04:41 -070088 ;;
89 1)
90 test -d "$GIT_DIR/rr-cache" && git-rerere
Eric Wong66eb64c2006-06-28 02:11:06 -070091 die "$RESOLVEMSG"
Eric Wong58634db2006-06-21 03:04:41 -070092 ;;
93 2)
94 echo "Strategy: $rv $strategy failed, try another" 1>&2
Eric Wong66eb64c2006-06-28 02:11:06 -070095 die "$RESOLVEMSG"
Eric Wong58634db2006-06-21 03:04:41 -070096 ;;
97 *)
98 die "Unknown exit code ($rv) from command:" \
99 "git-merge-$strategy $cmt^ -- HEAD $cmt"
100 ;;
101 esac
102}
103
104finish_rb_merge () {
Eric Wong58634db2006-06-21 03:04:41 -0700105 rm -r "$dotest"
106 echo "All done."
107}
108
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800109while case "$#" in 0) break ;; esac
110do
111 case "$1" in
sean031321c2006-04-26 10:49:38 -0400112 --continue)
113 diff=$(git-diff-files)
114 case "$diff" in
115 ?*) echo "You must edit all merge conflicts and then"
116 echo "mark them as resolved using git update-index"
117 exit 1
118 ;;
119 esac
Eric Wong58634db2006-06-21 03:04:41 -0700120 if test -d "$dotest"
121 then
122 prev_head="`cat $dotest/prev_head`"
123 end="`cat $dotest/end`"
124 msgnum="`cat $dotest/msgnum`"
125 onto="`cat $dotest/onto`"
126 continue_merge
127 while test "$msgnum" -le "$end"
128 do
129 call_merge "$msgnum"
130 continue_merge
131 done
132 finish_rb_merge
133 exit
134 fi
Shawn Pearce8ef1c7c2006-07-14 00:47:23 -0400135 git am --resolved --3way --resolvemsg="$RESOLVEMSG" \
136 --reflog-action=rebase
Seancc120052006-05-13 23:34:08 -0400137 exit
138 ;;
139 --skip)
Eric Wong58634db2006-06-21 03:04:41 -0700140 if test -d "$dotest"
141 then
Eric Wongd5e673b2006-06-24 18:29:49 -0700142 prev_head="`cat $dotest/prev_head`"
143 end="`cat $dotest/end`"
144 msgnum="`cat $dotest/msgnum`"
145 msgnum=$(($msgnum + 1))
146 onto="`cat $dotest/onto`"
147 while test "$msgnum" -le "$end"
148 do
149 call_merge "$msgnum"
150 continue_merge
151 done
152 finish_rb_merge
153 exit
Eric Wong58634db2006-06-21 03:04:41 -0700154 fi
Shawn Pearce8ef1c7c2006-07-14 00:47:23 -0400155 git am -3 --skip --resolvemsg="$RESOLVEMSG" \
156 --reflog-action=rebase
sean031321c2006-04-26 10:49:38 -0400157 exit
158 ;;
159 --abort)
Eric Wong58634db2006-06-21 03:04:41 -0700160 if test -d "$dotest"
161 then
162 rm -r "$dotest"
163 elif test -d .dotest
164 then
165 rm -r .dotest
166 else
167 die "No rebase in progress?"
168 fi
sean031321c2006-04-26 10:49:38 -0400169 git reset --hard ORIG_HEAD
sean031321c2006-04-26 10:49:38 -0400170 exit
171 ;;
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800172 --onto)
173 test 2 -le "$#" || usage
174 newbase="$2"
175 shift
176 ;;
Eric Wong58634db2006-06-21 03:04:41 -0700177 -M|-m|--m|--me|--mer|--merg|--merge)
178 do_merge=t
179 ;;
180 -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
181 --strateg=*|--strategy=*|\
182 -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
183 case "$#,$1" in
184 *,*=*)
Dennis Stosberg8096fae2006-06-27 18:54:26 +0200185 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
Eric Wong58634db2006-06-21 03:04:41 -0700186 1,*)
187 usage ;;
188 *)
189 strategy="$2"
190 shift ;;
191 esac
192 do_merge=t
193 ;;
Robert Shearmanb7587892006-10-03 17:29:31 +0100194 -v|--verbose)
195 verbose=t
196 ;;
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800197 -*)
198 usage
199 ;;
200 *)
201 break
202 ;;
203 esac
204 shift
205done
Junio C Hamano2db8aae2005-12-14 03:11:37 -0800206
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800207# Make sure we do not have .dotest
Eric Wong58634db2006-06-21 03:04:41 -0700208if test -z "$do_merge"
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800209then
Eric Wong58634db2006-06-21 03:04:41 -0700210 if mkdir .dotest
211 then
212 rmdir .dotest
213 else
214 echo >&2 '
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800215It seems that I cannot create a .dotest directory, and I wonder if you
216are in the middle of patch application or another rebase. If that is not
217the case, please rm -fr .dotest and run me again. I am stopping in case
218you still have something valuable there.'
Eric Wong58634db2006-06-21 03:04:41 -0700219 exit 1
220 fi
221else
222 if test -d "$dotest"
223 then
224 die "previous dotest directory $dotest still exists." \
225 'try git-rebase < --continue | --abort >'
226 fi
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800227fi
228
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800229# The tree must be really really clean.
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700230git-update-index --refresh || exit
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800231diff=$(git-diff-index --cached --name-status -r HEAD)
Lukas Sandström32d99542005-12-15 00:36:35 +0100232case "$diff" in
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800233?*) echo "$diff"
234 exit 1
235 ;;
Junio C Hamano59e6b232005-06-25 02:23:43 -0700236esac
237
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800238# The upstream head must be given. Make sure it is valid.
239upstream_name="$1"
240upstream=`git rev-parse --verify "${upstream_name}^0"` ||
Jason Riedyd0080b32006-02-21 12:56:14 -0800241 die "invalid upstream $upstream_name"
Lukas Sandström32d99542005-12-15 00:36:35 +0100242
Junio C Hamano9a111c92006-02-12 23:17:04 -0800243# If a hook exists, give it a chance to interrupt
244if test -x "$GIT_DIR/hooks/pre-rebase"
245then
246 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
247 echo >&2 "The pre-rebase hook refused to rebase."
248 exit 1
249 }
250fi
251
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800252# If the branch to rebase is given, first switch to it.
253case "$#" in
2542)
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800255 branch_name="$2"
freku045@student.liu.se3ae39ab2005-12-13 23:30:32 +0100256 git-checkout "$2" || usage
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800257 ;;
258*)
259 branch_name=`git symbolic-ref HEAD` || die "No current branch"
Mark Woodingf327dbc2006-04-13 22:01:24 +0000260 branch_name=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'`
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800261 ;;
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800262esac
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800263branch=$(git-rev-parse --verify "${branch_name}^0") || exit
Junio C Hamano99a92f92005-08-17 15:19:57 -0700264
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800265# Make sure the branch to rebase onto is valid.
266onto_name=${newbase-"$upstream_name"}
267onto=$(git-rev-parse --verify "${onto_name}^0") || exit
Lukas Sandström32d99542005-12-15 00:36:35 +0100268
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800269# Now we are rebasing commits $upstream..$branch on top of $onto
270
271# Check if we are already based on $onto, but this should be
272# done only when upstream and onto are the same.
Robert Shearman83c31612006-07-27 10:32:25 +0100273mb=$(git-merge-base "$onto" "$branch")
274if test "$upstream" = "$onto" && test "$mb" = "$onto"
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800275then
Robert Shearman83c31612006-07-27 10:32:25 +0100276 echo >&2 "Current branch $branch_name is up to date."
277 exit 0
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800278fi
279
Robert Shearmanb7587892006-10-03 17:29:31 +0100280if test -n "$verbose"
281then
282 echo "Changes from $mb to $onto:"
283 git-diff-tree --stat --summary "$mb" "$onto"
284fi
285
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800286# Rewind the head to "$onto"; this saves our current head in ORIG_HEAD.
287git-reset --hard "$onto"
Lukas Sandström32d99542005-12-15 00:36:35 +0100288
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800289# If the $onto is a proper descendant of the tip of the branch, then
Lukas Sandström32d99542005-12-15 00:36:35 +0100290# we just fast forwarded.
Robert Shearman83c31612006-07-27 10:32:25 +0100291if test "$mb" = "$branch"
Lukas Sandström32d99542005-12-15 00:36:35 +0100292then
Robert Shearmand587ed12006-07-27 10:32:46 +0100293 echo >&2 "Fast-forwarded $branch_name to $onto_name."
Lukas Sandström32d99542005-12-15 00:36:35 +0100294 exit 0
295fi
296
Eric Wong58634db2006-06-21 03:04:41 -0700297if test -z "$do_merge"
298then
Robert Shearman91b48972006-10-03 17:29:26 +0100299 git-format-patch -k --stdout --full-index --ignore-if-in-upstream "$upstream"..ORIG_HEAD |
Shawn Pearce8ef1c7c2006-07-14 00:47:23 -0400300 git am --binary -3 -k --resolvemsg="$RESOLVEMSG" \
301 --reflog-action=rebase
Eric Wong58634db2006-06-21 03:04:41 -0700302 exit $?
303fi
Seancc120052006-05-13 23:34:08 -0400304
Eric Wong58634db2006-06-21 03:04:41 -0700305# start doing a rebase with git-merge
306# this is rename-aware if the recursive (default) strategy is used
307
308mkdir -p "$dotest"
309echo "$onto" > "$dotest/onto"
310prev_head=`git-rev-parse HEAD^0`
311echo "$prev_head" > "$dotest/prev_head"
312
313msgnum=0
314for cmt in `git-rev-list --no-merges "$upstream"..ORIG_HEAD \
Michal Rokosd9bffc02006-07-08 17:32:04 +0200315 | @@PERL@@ -e 'print reverse <>'`
Eric Wong58634db2006-06-21 03:04:41 -0700316do
317 msgnum=$(($msgnum + 1))
Junio C Hamano5887ac82006-06-22 01:44:54 -0700318 echo "$cmt" > "$dotest/cmt.$msgnum"
Eric Wong58634db2006-06-21 03:04:41 -0700319done
320
Junio C Hamano5887ac82006-06-22 01:44:54 -0700321echo 1 >"$dotest/msgnum"
322echo $msgnum >"$dotest/end"
Eric Wong58634db2006-06-21 03:04:41 -0700323
324end=$msgnum
325msgnum=1
326
327while test "$msgnum" -le "$end"
328do
329 call_merge "$msgnum"
330 continue_merge
331done
332
333finish_rb_merge