1#!/bin/sh 2# 3# Copyright (c) 2005 Junio C Hamano. 4# 5 6USAGE='[--interactive | -i] [-v] [--force-rebase | -f] [--onto <newbase>] [<upstream>|--root] [<branch>]' 7LONG_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. 12 13It is possible that a merge failure will prevent this process from being 14completely automatic. You will have to resolve any such merge failure 15and 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 .git/rebase-apply working files, use the 18command git rebase --abort instead. 19 20Note that if <branch> is not specified on the command line, the 21currently checked out branch is used. 22 23Example: git-rebase master~1 topic 24 25 A---B---C topic A'\''--B'\''--C'\'' topic 26 / --> / 27 D---E---F---G master D---E---F---G master 28' 29 30SUBDIRECTORY_OK=Yes 31OPTIONS_SPEC= 32. git-sh-setup 33set_reflog_action rebase 34require_work_tree 35cd_to_toplevel 36 37OK_TO_SKIP_PRE_REBASE= 38RESOLVEMSG=" 39When you have resolved this problem run\"git rebase --continue\". 40If you would prefer to skip this patch, instead run\"git rebase --skip\". 41To restore the original branch and stop rebasing run\"git rebase --abort\". 42" 43unset newbase 44strategy=recursive 45do_merge= 46dotest="$GIT_DIR"/rebase-merge 47prec=4 48verbose= 49diffstat=$(git config --bool rebase.stat) 50git_am_opt= 51rebase_root= 52force_rebase= 53 54continue_merge () { 55test -n"$prev_head"|| die "prev_head must be defined" 56test -d"$dotest"|| die "$dotestdirectory does not exist" 57 58 unmerged=$(git ls-files -u) 59iftest -n"$unmerged" 60then 61echo"You still have unmerged paths in your index" 62echo"did you forget to use git add?" 63 die "$RESOLVEMSG" 64fi 65 66 cmt=`cat "$dotest/current"` 67if! git diff-index --quiet --ignore-submodules HEAD -- 68then 69if! git commit --no-verify -C"$cmt" 70then 71echo"Commit failed, please do not call\"git commit\"" 72echo"directly, but instead do one of the following: " 73 die "$RESOLVEMSG" 74fi 75printf"Committed: %0${prec}d "$msgnum 76else 77printf"Already applied: %0${prec}d "$msgnum 78fi 79 git rev-list --pretty=oneline -1"$cmt"|sed-e's/^[^ ]* //' 80 81 prev_head=`git rev-parse HEAD^0` 82# save the resulting commit so we can read-tree on it later 83echo"$prev_head">"$dotest/prev_head" 84 85# onto the next patch: 86 msgnum=$(($msgnum + 1)) 87echo"$msgnum">"$dotest/msgnum" 88} 89 90call_merge () { 91 cmt="$(cat "$dotest/cmt.$1")" 92echo"$cmt">"$dotest/current" 93 hd=$(git rev-parse --verify HEAD) 94 cmt_name=$(git symbolic-ref HEAD 2> /dev/null || echo HEAD) 95 msgnum=$(cat "$dotest/msgnum") 96 end=$(cat "$dotest/end") 97eval GITHEAD_$cmt='"${cmt_name##refs/heads/}~$(($end - $msgnum))"' 98eval GITHEAD_$hd='$(cat "$dotest/onto_name")' 99export GITHEAD_$cmt GITHEAD_$hd 100 git-merge-$strategy"$cmt^"--"$hd""$cmt" 101 rv=$? 102case"$rv"in 1030) 104unset GITHEAD_$cmt GITHEAD_$hd 105return 106;; 1071) 108 git rerere 109 die "$RESOLVEMSG" 110;; 1112) 112echo"Strategy:$rv$strategyfailed, try another"1>&2 113 die "$RESOLVEMSG" 114;; 115*) 116 die "Unknown exit code ($rv) from command:" \ 117"git-merge-$strategy$cmt^ -- HEAD$cmt" 118;; 119esac 120} 121 122move_to_original_branch () { 123test -z"$head_name"&& 124 head_name="$(cat "$dotest"/head-name)"&& 125 onto="$(cat "$dotest"/onto)"&& 126 orig_head="$(cat "$dotest"/orig-head)" 127case"$head_name"in 128 refs/*) 129 message="rebase finished:$head_nameonto$onto" 130 git update-ref -m"$message" \ 131$head_name $(git rev-parse HEAD) $orig_head&& 132 git symbolic-ref HEAD $head_name|| 133 die "Could not move back to$head_name" 134;; 135esac 136} 137 138finish_rb_merge () { 139 move_to_original_branch 140rm-r"$dotest" 141echo"All done." 142} 143 144is_interactive () { 145whiletest$#!=0 146do 147case"$1"in 148-i|--interactive) 149 interactive_rebase=explicit 150break 151;; 152-p|--preserve-merges) 153 interactive_rebase=implied 154;; 155esac 156shift 157done 158 159if["$interactive_rebase"= implied ];then 160 GIT_EDITOR=: 161export GIT_EDITOR 162fi 163 164test -n"$interactive_rebase"||test -f"$dotest"/interactive 165} 166 167run_pre_rebase_hook () { 168iftest -z"$OK_TO_SKIP_PRE_REBASE"&& 169test -x"$GIT_DIR/hooks/pre-rebase" 170then 171"$GIT_DIR/hooks/pre-rebase"${1+"$@"}|| 172 die "The pre-rebase hook refused to rebase." 173fi 174} 175 176test -f"$GIT_DIR"/rebase-apply/applying && 177 die 'It looks like git-am is in progress. Cannot rebase.' 178 179is_interactive "$@"&&exec git-rebase--interactive"$@" 180 181iftest$#-eq0 182then 183test -d"$dotest"-o -d"$GIT_DIR"/rebase-apply|| usage 184test -d"$dotest"-o -f"$GIT_DIR"/rebase-apply/rebasing && 185 die 'A rebase is in progress, try --continue, --skip or --abort.' 186 die "No arguments given and$GIT_DIR/rebase-apply already exists." 187fi 188 189whiletest$#!=0 190do 191case"$1"in 192--no-verify) 193 OK_TO_SKIP_PRE_REBASE=yes 194;; 195--continue) 196test -d"$dotest"-o -d"$GIT_DIR"/rebase-apply|| 197 die "No rebase in progress?" 198 199 git diff-files --quiet --ignore-submodules|| { 200echo"You must edit all merge conflicts and then" 201echo"mark them as resolved using git add" 202exit1 203} 204iftest -d"$dotest" 205then 206 prev_head=$(cat "$dotest/prev_head") 207 end=$(cat "$dotest/end") 208 msgnum=$(cat "$dotest/msgnum") 209 onto=$(cat "$dotest/onto") 210 continue_merge 211whiletest"$msgnum"-le"$end" 212do 213 call_merge "$msgnum" 214 continue_merge 215done 216 finish_rb_merge 217exit 218fi 219 head_name=$(cat "$GIT_DIR"/rebase-apply/head-name)&& 220 onto=$(cat "$GIT_DIR"/rebase-apply/onto)&& 221 orig_head=$(cat "$GIT_DIR"/rebase-apply/orig-head)&& 222 git am --resolved --3way --resolvemsg="$RESOLVEMSG"&& 223 move_to_original_branch 224exit 225;; 226--skip) 227test -d"$dotest"-o -d"$GIT_DIR"/rebase-apply|| 228 die "No rebase in progress?" 229 230 git reset--hard HEAD ||exit $? 231iftest -d"$dotest" 232then 233 git rerere clear 234 prev_head=$(cat "$dotest/prev_head") 235 end=$(cat "$dotest/end") 236 msgnum=$(cat "$dotest/msgnum") 237 msgnum=$(($msgnum + 1)) 238 onto=$(cat "$dotest/onto") 239whiletest"$msgnum"-le"$end" 240do 241 call_merge "$msgnum" 242 continue_merge 243done 244 finish_rb_merge 245exit 246fi 247 head_name=$(cat "$GIT_DIR"/rebase-apply/head-name)&& 248 onto=$(cat "$GIT_DIR"/rebase-apply/onto)&& 249 orig_head=$(cat "$GIT_DIR"/rebase-apply/orig-head)&& 250 git am -3 --skip --resolvemsg="$RESOLVEMSG"&& 251 move_to_original_branch 252exit 253;; 254--abort) 255test -d"$dotest"-o -d"$GIT_DIR"/rebase-apply|| 256 die "No rebase in progress?" 257 258 git rerere clear 259iftest -d"$dotest" 260then 261 move_to_original_branch 262else 263 dotest="$GIT_DIR"/rebase-apply 264 move_to_original_branch 265fi 266 git reset--hard$(cat "$dotest/orig-head") 267rm-r"$dotest" 268exit 269;; 270--onto) 271test2-le"$#"|| usage 272 newbase="$2" 273shift 274;; 275-M|-m|--m|--me|--mer|--merg|--merge) 276 do_merge=t 277;; 278-s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\ 279--strateg=*|--strategy=*|\ 280-s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy) 281case"$#,$1"in 282*,*=*) 283 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'`;; 2841,*) 285 usage ;; 286*) 287 strategy="$2" 288shift;; 289esac 290 do_merge=t 291;; 292-n|--no-stat) 293 diffstat= 294;; 295--stat) 296 diffstat=t 297;; 298-v|--verbose) 299 verbose=t 300 diffstat=t 301;; 302--whitespace=*) 303 git_am_opt="$git_am_opt$1" 304case"$1"in 305--whitespace=fix|--whitespace=strip) 306 force_rebase=t 307;; 308esac 309;; 310--committer-date-is-author-date|--ignore-date) 311 git_am_opt="$git_am_opt$1" 312 force_rebase=t 313;; 314-C*) 315 git_am_opt="$git_am_opt$1" 316;; 317--root) 318 rebase_root=t 319;; 320-f|--f|--fo|--for|--forc|force|--force-r|--force-re|--force-reb|--force-reba|--force-rebas|--force-rebase) 321 force_rebase=t 322;; 323-*) 324 usage 325;; 326*) 327break 328;; 329esac 330shift 331done 332test$#-gt2&& usage 333 334# Make sure we do not have $GIT_DIR/rebase-apply 335iftest -z"$do_merge" 336then 337ifmkdir"$GIT_DIR"/rebase-apply2>/dev/null 338then 339rmdir"$GIT_DIR"/rebase-apply 340else 341echo>&2' 342It seems that I cannot create a rebase-apply directory, and 343I wonder if you are in the middle of patch application or another 344rebase. If that is not the case, please 345 rm -fr '"$GIT_DIR"'/rebase-apply 346and run me again. I am stopping in case you still have something 347valuable there.' 348exit1 349fi 350else 351iftest -d"$dotest" 352then 353 die "previous rebase directory$doteststill exists." \ 354'Try git rebase (--continue | --abort | --skip)' 355fi 356fi 357 358# The tree must be really really clean. 359if! git update-index --ignore-submodules --refresh;then 360 die "cannot rebase: you have unstaged changes" 361fi 362diff=$(git diff-index --cached --name-status -r --ignore-submodules HEAD --) 363case"$diff"in 364?*)echo>&2"cannot rebase: your index contains uncommitted changes" 365echo>&2"$diff" 366exit1 367;; 368esac 369 370iftest -z"$rebase_root" 371then 372# The upstream head must be given. Make sure it is valid. 373 upstream_name="$1" 374shift 375 upstream=`git rev-parse --verify "${upstream_name}^0"`|| 376 die "invalid upstream$upstream_name" 377unset root_flag 378 upstream_arg="$upstream_name" 379else 380test -z"$newbase"&& die "--root must be used with --onto" 381unset upstream_name 382unset upstream 383 root_flag="--root" 384 upstream_arg="$root_flag" 385fi 386 387# Make sure the branch to rebase onto is valid. 388onto_name=${newbase-"$upstream_name"} 389onto=$(git rev-parse --verify "${onto_name}^0")||exit 390 391# If a hook exists, give it a chance to interrupt 392run_pre_rebase_hook "$upstream_arg""$@" 393 394# If the branch to rebase is given, that is the branch we will rebase 395# $branch_name -- branch being rebased, or HEAD (already detached) 396# $orig_head -- commit object name of tip of the branch before rebasing 397# $head_name -- refs/heads/<that-branch> or "detached HEAD" 398switch_to= 399case"$#"in 4001) 401# Is it "rebase other $branchname" or "rebase other $commit"? 402 branch_name="$1" 403 switch_to="$1" 404 405if git show-ref --verify --quiet --"refs/heads/$1"&& 406 branch=$(git rev-parse -q --verify "refs/heads/$1") 407then 408 head_name="refs/heads/$1" 409elif branch=$(git rev-parse -q --verify "$1") 410then 411 head_name="detached HEAD" 412else 413 usage 414fi 415;; 416*) 417# Do not need to switch branches, we are already on it. 418if branch_name=`git symbolic-ref -q HEAD` 419then 420 head_name=$branch_name 421 branch_name=`expr "z$branch_name" : 'zrefs/heads/\(.*\)'` 422else 423 head_name="detached HEAD" 424 branch_name=HEAD ;# detached 425fi 426 branch=$(git rev-parse --verify "${branch_name}^0")||exit 427;; 428esac 429orig_head=$branch 430 431# Now we are rebasing commits $upstream..$branch (or with --root, 432# everything leading up to $branch) on top of $onto 433 434# Check if we are already based on $onto with linear history, 435# but this should be done only when upstream and onto are the same. 436mb=$(git merge-base "$onto" "$branch") 437iftest"$upstream"="$onto"&&test"$mb"="$onto"&& 438# linear history? 439! (git rev-list --parents"$onto".."$branch"|grep" .* ") > /dev/null 440then 441iftest -z"$force_rebase" 442then 443# Lazily switch to the target branch if needed... 444test -z"$switch_to"|| git checkout "$switch_to" 445echo>&2"Current branch$branch_nameis up to date." 446exit0 447else 448echo"Current branch$branch_nameis up to date, rebase forced." 449fi 450fi 451 452# Detach HEAD and reset the tree 453echo"First, rewinding head to replay your work on top of it..." 454git checkout -q"$onto^0"|| die "could not detach HEAD" 455git update-ref ORIG_HEAD $branch 456 457iftest -n"$diffstat" 458then 459iftest -n"$verbose" 460then 461echo"Changes from$mbto$onto:" 462fi 463# We want color (if set), but no pager 464 GIT_PAGER='' git diff--stat --summary"$mb""$onto" 465fi 466 467# If the $onto is a proper descendant of the tip of the branch, then 468# we just fast forwarded. 469iftest"$mb"="$branch" 470then 471echo>&2"Fast-forwarded$branch_nameto$onto_name." 472 move_to_original_branch 473exit0 474fi 475 476iftest -n"$rebase_root" 477then 478 revisions="$onto..$orig_head" 479else 480 revisions="$upstream..$orig_head" 481fi 482 483iftest -z"$do_merge" 484then 485 git format-patch -k --stdout --full-index --ignore-if-in-upstream \ 486$root_flag"$revisions"| 487 git am $git_am_opt--rebasing --resolvemsg="$RESOLVEMSG"&& 488 move_to_original_branch 489 ret=$? 490test0!=$ret-a -d"$GIT_DIR"/rebase-apply&& 491echo$head_name>"$GIT_DIR"/rebase-apply/head-name&& 492echo$onto>"$GIT_DIR"/rebase-apply/onto && 493echo$orig_head>"$GIT_DIR"/rebase-apply/orig-head 494exit$ret 495fi 496 497# start doing a rebase with git-merge 498# this is rename-aware if the recursive (default) strategy is used 499 500mkdir-p"$dotest" 501echo"$onto">"$dotest/onto" 502echo"$onto_name">"$dotest/onto_name" 503prev_head=$orig_head 504echo"$prev_head">"$dotest/prev_head" 505echo"$orig_head">"$dotest/orig-head" 506echo"$head_name">"$dotest/head-name" 507 508msgnum=0 509for cmt in`git rev-list --reverse --no-merges "$revisions"` 510do 511 msgnum=$(($msgnum + 1)) 512echo"$cmt">"$dotest/cmt.$msgnum" 513done 514 515echo1>"$dotest/msgnum" 516echo$msgnum>"$dotest/end" 517 518end=$msgnum 519msgnum=1 520 521whiletest"$msgnum"-le"$end" 522do 523 call_merge "$msgnum" 524 continue_merge 525done 526 527finish_rb_merge