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