blob: a7373c0532fad447263e7199d0b8ec2908c683c9 [file] [log] [blame]
Junio C Hamano59e6b232005-06-25 02:23:43 -07001#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano.
4#
5
Junio C Hamanoe646c9c2006-02-14 14:42:05 -08006USAGE='[--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
42
43continue_merge () {
44 test -n "$prev_head" || die "prev_head must be defined"
45 test -d "$dotest" || die "$dotest directory does not exist"
46
47 unmerged=$(git-ls-files -u)
48 if test -n "$unmerged"
49 then
50 echo "You still have unmerged paths in your index"
51 echo "did you forget update-index?"
Eric Wong66eb64c2006-06-28 02:11:06 -070052 die "$RESOLVEMSG"
Eric Wong58634db2006-06-21 03:04:41 -070053 fi
54
55 if test -n "`git-diff-index HEAD`"
56 then
Eric Wongf0ef0592006-06-28 03:24:23 -070057 if ! git-commit -C "`cat $dotest/current`"
58 then
59 echo "Commit failed, please do not call \"git commit\""
60 echo "directly, but instead do one of the following: "
61 die "$RESOLVEMSG"
62 fi
Eric Wong9e4bc7d2006-06-24 18:29:48 -070063 printf "Committed: %0${prec}d" $msgnum
Eric Wong58634db2006-06-21 03:04:41 -070064 else
Eric Wong9e4bc7d2006-06-24 18:29:48 -070065 printf "Already applied: %0${prec}d" $msgnum
Eric Wong58634db2006-06-21 03:04:41 -070066 fi
Eric Wong9e4bc7d2006-06-24 18:29:48 -070067 echo ' '`git-rev-list --pretty=oneline -1 HEAD | \
68 sed 's/^[a-f0-9]\+ //'`
Eric Wong58634db2006-06-21 03:04:41 -070069
70 prev_head=`git-rev-parse HEAD^0`
Eric Wong58634db2006-06-21 03:04:41 -070071 # save the resulting commit so we can read-tree on it later
Eric Wong58634db2006-06-21 03:04:41 -070072 echo "$prev_head" > "$dotest/prev_head"
73
74 # onto the next patch:
75 msgnum=$(($msgnum + 1))
Junio C Hamano5887ac82006-06-22 01:44:54 -070076 echo "$msgnum" >"$dotest/msgnum"
Eric Wong58634db2006-06-21 03:04:41 -070077}
78
79call_merge () {
Junio C Hamano5887ac82006-06-22 01:44:54 -070080 cmt="$(cat $dotest/cmt.$1)"
Eric Wong58634db2006-06-21 03:04:41 -070081 echo "$cmt" > "$dotest/current"
82 git-merge-$strategy "$cmt^" -- HEAD "$cmt"
83 rv=$?
84 case "$rv" in
85 0)
Eric Wong9e4bc7d2006-06-24 18:29:48 -070086 return
Eric Wong58634db2006-06-21 03:04:41 -070087 ;;
88 1)
89 test -d "$GIT_DIR/rr-cache" && git-rerere
Eric Wong66eb64c2006-06-28 02:11:06 -070090 die "$RESOLVEMSG"
Eric Wong58634db2006-06-21 03:04:41 -070091 ;;
92 2)
93 echo "Strategy: $rv $strategy failed, try another" 1>&2
Eric Wong66eb64c2006-06-28 02:11:06 -070094 die "$RESOLVEMSG"
Eric Wong58634db2006-06-21 03:04:41 -070095 ;;
96 *)
97 die "Unknown exit code ($rv) from command:" \
98 "git-merge-$strategy $cmt^ -- HEAD $cmt"
99 ;;
100 esac
101}
102
103finish_rb_merge () {
Eric Wong58634db2006-06-21 03:04:41 -0700104 rm -r "$dotest"
105 echo "All done."
106}
107
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800108while case "$#" in 0) break ;; esac
109do
110 case "$1" in
sean031321c2006-04-26 10:49:38 -0400111 --continue)
112 diff=$(git-diff-files)
113 case "$diff" in
114 ?*) echo "You must edit all merge conflicts and then"
115 echo "mark them as resolved using git update-index"
116 exit 1
117 ;;
118 esac
Eric Wong58634db2006-06-21 03:04:41 -0700119 if test -d "$dotest"
120 then
121 prev_head="`cat $dotest/prev_head`"
122 end="`cat $dotest/end`"
123 msgnum="`cat $dotest/msgnum`"
124 onto="`cat $dotest/onto`"
125 continue_merge
126 while test "$msgnum" -le "$end"
127 do
128 call_merge "$msgnum"
129 continue_merge
130 done
131 finish_rb_merge
132 exit
133 fi
Shawn Pearce8ef1c7c2006-07-14 00:47:23 -0400134 git am --resolved --3way --resolvemsg="$RESOLVEMSG" \
135 --reflog-action=rebase
Seancc120052006-05-13 23:34:08 -0400136 exit
137 ;;
138 --skip)
Eric Wong58634db2006-06-21 03:04:41 -0700139 if test -d "$dotest"
140 then
Eric Wongd5e673b2006-06-24 18:29:49 -0700141 prev_head="`cat $dotest/prev_head`"
142 end="`cat $dotest/end`"
143 msgnum="`cat $dotest/msgnum`"
144 msgnum=$(($msgnum + 1))
145 onto="`cat $dotest/onto`"
146 while test "$msgnum" -le "$end"
147 do
148 call_merge "$msgnum"
149 continue_merge
150 done
151 finish_rb_merge
152 exit
Eric Wong58634db2006-06-21 03:04:41 -0700153 fi
Shawn Pearce8ef1c7c2006-07-14 00:47:23 -0400154 git am -3 --skip --resolvemsg="$RESOLVEMSG" \
155 --reflog-action=rebase
sean031321c2006-04-26 10:49:38 -0400156 exit
157 ;;
158 --abort)
Eric Wong58634db2006-06-21 03:04:41 -0700159 if test -d "$dotest"
160 then
161 rm -r "$dotest"
162 elif test -d .dotest
163 then
164 rm -r .dotest
165 else
166 die "No rebase in progress?"
167 fi
sean031321c2006-04-26 10:49:38 -0400168 git reset --hard ORIG_HEAD
sean031321c2006-04-26 10:49:38 -0400169 exit
170 ;;
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800171 --onto)
172 test 2 -le "$#" || usage
173 newbase="$2"
174 shift
175 ;;
Eric Wong58634db2006-06-21 03:04:41 -0700176 -M|-m|--m|--me|--mer|--merg|--merge)
177 do_merge=t
178 ;;
179 -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\
180 --strateg=*|--strategy=*|\
181 -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy)
182 case "$#,$1" in
183 *,*=*)
Dennis Stosberg8096fae2006-06-27 18:54:26 +0200184 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;;
Eric Wong58634db2006-06-21 03:04:41 -0700185 1,*)
186 usage ;;
187 *)
188 strategy="$2"
189 shift ;;
190 esac
191 do_merge=t
192 ;;
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800193 -*)
194 usage
195 ;;
196 *)
197 break
198 ;;
199 esac
200 shift
201done
Junio C Hamano2db8aae2005-12-14 03:11:37 -0800202
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800203# Make sure we do not have .dotest
Eric Wong58634db2006-06-21 03:04:41 -0700204if test -z "$do_merge"
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800205then
Eric Wong58634db2006-06-21 03:04:41 -0700206 if mkdir .dotest
207 then
208 rmdir .dotest
209 else
210 echo >&2 '
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800211It seems that I cannot create a .dotest directory, and I wonder if you
212are in the middle of patch application or another rebase. If that is not
213the case, please rm -fr .dotest and run me again. I am stopping in case
214you still have something valuable there.'
Eric Wong58634db2006-06-21 03:04:41 -0700215 exit 1
216 fi
217else
218 if test -d "$dotest"
219 then
220 die "previous dotest directory $dotest still exists." \
221 'try git-rebase < --continue | --abort >'
222 fi
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800223fi
224
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800225# The tree must be really really clean.
Junio C Hamano215a7ad2005-09-07 17:26:23 -0700226git-update-index --refresh || exit
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800227diff=$(git-diff-index --cached --name-status -r HEAD)
Lukas Sandström32d99542005-12-15 00:36:35 +0100228case "$diff" in
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800229?*) echo "$diff"
230 exit 1
231 ;;
Junio C Hamano59e6b232005-06-25 02:23:43 -0700232esac
233
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800234# The upstream head must be given. Make sure it is valid.
235upstream_name="$1"
236upstream=`git rev-parse --verify "${upstream_name}^0"` ||
Jason Riedyd0080b32006-02-21 12:56:14 -0800237 die "invalid upstream $upstream_name"
Lukas Sandström32d99542005-12-15 00:36:35 +0100238
Junio C Hamano9a111c92006-02-12 23:17:04 -0800239# If a hook exists, give it a chance to interrupt
240if test -x "$GIT_DIR/hooks/pre-rebase"
241then
242 "$GIT_DIR/hooks/pre-rebase" ${1+"$@"} || {
243 echo >&2 "The pre-rebase hook refused to rebase."
244 exit 1
245 }
246fi
247
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800248# If the branch to rebase is given, first switch to it.
249case "$#" in
2502)
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800251 branch_name="$2"
freku045@student.liu.se3ae39ab2005-12-13 23:30:32 +0100252 git-checkout "$2" || usage
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800253 ;;
254*)
255 branch_name=`git symbolic-ref HEAD` || die "No current branch"
Mark Woodingf327dbc2006-04-13 22:01:24 +0000256 branch_name=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'`
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800257 ;;
Junio C Hamano7f59dbb2005-11-14 00:41:53 -0800258esac
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800259branch=$(git-rev-parse --verify "${branch_name}^0") || exit
Junio C Hamano99a92f92005-08-17 15:19:57 -0700260
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800261# Make sure the branch to rebase onto is valid.
262onto_name=${newbase-"$upstream_name"}
263onto=$(git-rev-parse --verify "${onto_name}^0") || exit
Lukas Sandström32d99542005-12-15 00:36:35 +0100264
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800265# Now we are rebasing commits $upstream..$branch on top of $onto
266
267# Check if we are already based on $onto, but this should be
268# done only when upstream and onto are the same.
Robert Shearman83c31612006-07-27 10:32:25 +0100269mb=$(git-merge-base "$onto" "$branch")
270if test "$upstream" = "$onto" && test "$mb" = "$onto"
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800271then
Robert Shearman83c31612006-07-27 10:32:25 +0100272 echo >&2 "Current branch $branch_name is up to date."
273 exit 0
Junio C Hamano7f4bd5d2005-11-28 13:00:31 -0800274fi
275
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800276# Rewind the head to "$onto"; this saves our current head in ORIG_HEAD.
277git-reset --hard "$onto"
Lukas Sandström32d99542005-12-15 00:36:35 +0100278
Junio C Hamanoe646c9c2006-02-14 14:42:05 -0800279# If the $onto is a proper descendant of the tip of the branch, then
Lukas Sandström32d99542005-12-15 00:36:35 +0100280# we just fast forwarded.
Robert Shearman83c31612006-07-27 10:32:25 +0100281if test "$mb" = "$branch"
Lukas Sandström32d99542005-12-15 00:36:35 +0100282then
Robert Shearmand587ed12006-07-27 10:32:46 +0100283 echo >&2 "Fast-forwarded $branch_name to $onto_name."
Lukas Sandström32d99542005-12-15 00:36:35 +0100284 exit 0
285fi
286
Eric Wong58634db2006-06-21 03:04:41 -0700287if test -z "$do_merge"
288then
289 git-format-patch -k --stdout --full-index "$upstream"..ORIG_HEAD |
Shawn Pearce8ef1c7c2006-07-14 00:47:23 -0400290 git am --binary -3 -k --resolvemsg="$RESOLVEMSG" \
291 --reflog-action=rebase
Eric Wong58634db2006-06-21 03:04:41 -0700292 exit $?
293fi
Seancc120052006-05-13 23:34:08 -0400294
Junio C Hamanoa06f6782006-09-24 19:49:47 -0700295if test "@@NO_PYTHON@@" && test "$strategy" = "recursive-old"
Eric Wong693c15d2006-06-21 03:04:42 -0700296then
Junio C Hamanoa06f6782006-09-24 19:49:47 -0700297 die 'The recursive-old merge strategy is written in Python,
Eric Wong693c15d2006-06-21 03:04:42 -0700298which this installation of git was not configured with. Please consider
Junio C Hamanoa06f6782006-09-24 19:49:47 -0700299a different merge strategy (e.g. recursive, resolve, or stupid)
Eric Wong693c15d2006-06-21 03:04:42 -0700300or install Python and git with Python support.'
301
302fi
303
Eric Wong58634db2006-06-21 03:04:41 -0700304# start doing a rebase with git-merge
305# this is rename-aware if the recursive (default) strategy is used
306
307mkdir -p "$dotest"
308echo "$onto" > "$dotest/onto"
309prev_head=`git-rev-parse HEAD^0`
310echo "$prev_head" > "$dotest/prev_head"
311
312msgnum=0
313for cmt in `git-rev-list --no-merges "$upstream"..ORIG_HEAD \
Michal Rokosd9bffc02006-07-08 17:32:04 +0200314 | @@PERL@@ -e 'print reverse <>'`
Eric Wong58634db2006-06-21 03:04:41 -0700315do
316 msgnum=$(($msgnum + 1))
Junio C Hamano5887ac82006-06-22 01:44:54 -0700317 echo "$cmt" > "$dotest/cmt.$msgnum"
Eric Wong58634db2006-06-21 03:04:41 -0700318done
319
Junio C Hamano5887ac82006-06-22 01:44:54 -0700320echo 1 >"$dotest/msgnum"
321echo $msgnum >"$dotest/end"
Eric Wong58634db2006-06-21 03:04:41 -0700322
323end=$msgnum
324msgnum=1
325
326while test "$msgnum" -le "$end"
327do
328 call_merge "$msgnum"
329 continue_merge
330done
331
332finish_rb_merge