1#!/bin/sh 2# 3# Copyright (c) 2005 Junio C Hamano 4# 5# Fetch one or more remote refs and merge it/them into the current HEAD. 6 7USAGE='[-n | --no-stat] [--[no-]commit] [--[no-]squash] [--[no-]ff] [-s strategy]... [<fetch-options>] <repo> <head>...' 8LONG_USAGE='Fetch one or more remote refs and merge it/them into the current HEAD.' 9SUBDIRECTORY_OK=Yes 10OPTIONS_SPEC= 11. git-sh-setup 12set_reflog_action "pull $*" 13require_work_tree 14cd_to_toplevel 15 16 17die_conflict () { 18 git diff-index --cached --name-status -r --ignore-submodules HEAD -- 19if[$(git config --bool --get advice.resolveConflict || echo true)="true"];then 20 die "Pull is not possible because you have unmerged files. 21Please, fix them up in the work tree, and then use 'git add/rm <file>' 22as appropriate to mark resolution, or use 'git commit -a'." 23else 24 die "Pull is not possible because you have unmerged files." 25fi 26} 27 28die_merge () { 29if[$(git config --bool --get advice.resolveConflict || echo true)="true"];then 30 die "You have not concluded your merge (MERGE_HEAD exists). 31Please, commit your changes before you can merge." 32else 33 die "You have not concluded your merge (MERGE_HEAD exists)." 34fi 35} 36 37test -z"$(git ls-files -u)"|| die_conflict 38test -f"$GIT_DIR/MERGE_HEAD"&& die_merge 39 40strategy_args= diffstat= no_commit= squash= no_ff= ff_only= 41log_arg= verbosity= progress= recurse_submodules= 42merge_args= 43curr_branch=$(git symbolic-ref -q HEAD) 44curr_branch_short="${curr_branch#refs/heads/}" 45rebase=$(git config --bool branch.$curr_branch_short.rebase) 46dry_run= 47while: 48do 49case"$1"in 50-q|--quiet) 51 verbosity="$verbosity-q";; 52-v|--verbose) 53 verbosity="$verbosity-v";; 54--progress) 55 progress=--progress;; 56--no-progress) 57 progress=--no-progress;; 58-n|--no-stat|--no-summary) 59 diffstat=--no-stat;; 60--stat|--summary) 61 diffstat=--stat;; 62--log|--no-log) 63 log_arg=$1;; 64--no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit) 65 no_commit=--no-commit;; 66--c|--co|--com|--comm|--commi|--commit) 67 no_commit=--commit;; 68--sq|--squ|--squa|--squas|--squash) 69 squash=--squash;; 70--no-sq|--no-squ|--no-squa|--no-squas|--no-squash) 71 squash=--no-squash;; 72--ff) 73 no_ff=--ff;; 74--no-ff) 75 no_ff=--no-ff;; 76--ff-only) 77 ff_only=--ff-only;; 78-s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\ 79--strateg=*|--strategy=*|\ 80-s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy) 81case"$#,$1"in 82*,*=*) 83 strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'`;; 841,*) 85 usage ;; 86*) 87 strategy="$2" 88shift;; 89esac 90 strategy_args="${strategy_args}-s$strategy" 91;; 92-X*) 93case"$#,$1"in 941,-X) 95 usage ;; 96*,-X) 97 xx="-X$(git rev-parse --sq-quote "$2")" 98shift;; 99*,*) 100 xx=$(git rev-parse --sq-quote "$1");; 101esac 102 merge_args="$merge_args$xx" 103;; 104-r|--r|--re|--reb|--reba|--rebas|--rebase) 105 rebase=true 106;; 107--no-r|--no-re|--no-reb|--no-reba|--no-rebas|--no-rebase) 108 rebase=false 109;; 110--recurse-submodules) 111 recurse_submodules=--recurse-submodules 112;; 113--no-recurse-submodules) 114 recurse_submodules=--no-recurse-submodules 115;; 116--d|--dr|--dry|--dry-|--dry-r|--dry-ru|--dry-run) 117 dry_run=--dry-run 118;; 119-h|--h|--he|--hel|--help|--help-|--help-a|--help-al|--help-all) 120 usage 121;; 122*) 123# Pass thru anything that may be meant for fetch. 124break 125;; 126esac 127shift 128done 129 130error_on_no_merge_candidates () { 131exec>&2 132for opt 133do 134case"$opt"in 135-t|--t|--ta|--tag|--tags) 136echo"Fetching tags only, you probably meant:" 137echo" git fetch --tags" 138exit1 139esac 140done 141 142iftest true ="$rebase" 143then 144 op_type=rebase 145 op_prep=against 146else 147 op_type=merge 148 op_prep=with 149fi 150 151 curr_branch=${curr_branch#refs/heads/} 152 upstream=$(git config "branch.$curr_branch.merge") 153 remote=$(git config "branch.$curr_branch.remote") 154 155if[$#-gt1];then 156if["$rebase"= true ];then 157printf"There is no candidate for rebasing against " 158else 159printf"There are no candidates for merging " 160fi 161echo"among the refs that you just fetched." 162echo"Generally this means that you provided a wildcard refspec which had no" 163echo"matches on the remote end." 164elif[$#-gt0] && ["$1"!="$remote"];then 165echo"You asked to pull from the remote '$1', but did not specify" 166echo"a branch. Because this is not the default configured remote" 167echo"for your current branch, you must specify a branch on the command line." 168elif[-z"$curr_branch"];then 169echo"You are not currently on a branch, so I cannot use any" 170echo"'branch.<branchname>.merge' in your configuration file." 171echo"Please specify which remote branch you want to use on the command" 172echo"line and try again (e.g. 'git pull <repository> <refspec>')." 173echo"See git-pull(1) for details." 174elif[-z"$upstream"];then 175echo"You asked me to pull without telling me which branch you" 176echo"want to$op_type$op_prep, and 'branch.${curr_branch}.merge' in" 177echo"your configuration file does not tell me, either. Please" 178echo"specify which branch you want to use on the command line and" 179echo"try again (e.g. 'git pull <repository> <refspec>')." 180echo"See git-pull(1) for details." 181echo 182echo"If you often$op_type$op_prepthe same branch, you may want to" 183echo"use something like the following in your configuration file:" 184echo 185echo" [branch\"${curr_branch}\"]" 186echo" remote = <nickname>" 187echo" merge = <remote-ref>" 188test rebase ="$op_type"&& 189echo" rebase = true" 190echo 191echo" [remote\"<nickname>\"]" 192echo" url = <url>" 193echo" fetch = <refspec>" 194echo 195echo"See git-config(1) for details." 196else 197echo"Your configuration specifies to$op_type$op_prepthe ref '${upstream#refs/heads/}'" 198echo"from the remote, but no such ref was fetched." 199fi 200exit1 201} 202 203test true ="$rebase"&& { 204if! git rev-parse -q --verify HEAD >/dev/null 205then 206# On an unborn branch 207iftest -f"$GIT_DIR/index" 208then 209 die "updating an unborn branch with changes added to the index" 210fi 211else 212 require_clean_work_tree "pull with rebase""Please commit or stash them." 213fi 214 oldremoteref= && 215 . git-parse-remote&& 216 remoteref="$(get_remote_merge_branch "$@" 2>/dev/null)"&& 217 oldremoteref="$(git rev-parse -q --verify "$remoteref")"&& 218for reflog in$(git rev-list -g $remoteref 2>/dev/null) 219do 220iftest"$reflog"="$(git merge-base $reflog $curr_branch)" 221then 222 oldremoteref="$reflog" 223break 224fi 225done 226} 227orig_head=$(git rev-parse -q --verify HEAD) 228git fetch $verbosity $progress $dry_run $recurse_submodules--update-head-ok"$@"||exit1 229test -z"$dry_run"||exit0 230 231curr_head=$(git rev-parse -q --verify HEAD) 232iftest -n"$orig_head"&&test"$curr_head"!="$orig_head" 233then 234# The fetch involved updating the current branch. 235 236# The working tree and the index file is still based on the 237# $orig_head commit, but we are merging into $curr_head. 238# First update the working tree to match $curr_head. 239 240echo>&2"Warning: fetch updated the current branch head." 241echo>&2"Warning: fast-forwarding your working tree from" 242echo>&2"Warning: commit$orig_head." 243 git update-index -q --refresh 244 git read-tree -u -m"$orig_head""$curr_head"|| 245 die 'Cannot fast-forward your working tree. 246After making sure that you saved anything precious from 247$ git diff '$orig_head' 248output, run 249$ git reset --hard 250to recover.' 251 252fi 253 254merge_head=$(sed-e'/ not-for-merge /d' \ 255-e's/ .*//'"$GIT_DIR"/FETCH_HEAD | \ 256tr'\012'' ') 257 258case"$merge_head"in 259'') 260 error_on_no_merge_candidates "$@" 261;; 262?*' '?*) 263iftest -z"$orig_head" 264then 265 die "Cannot merge multiple branches into empty head" 266fi 267iftest true ="$rebase" 268then 269 die "Cannot rebase onto multiple branches" 270fi 271;; 272esac 273 274iftest -z"$orig_head" 275then 276 git update-ref -m"initial pull" HEAD $merge_head"$curr_head"&& 277 git read-tree --reset -u HEAD ||exit1 278exit 279fi 280 281iftest true ="$rebase" 282then 283 o=$(git show-branch --merge-base $curr_branch $merge_head $oldremoteref) 284iftest"$oldremoteref"="$o" 285then 286unset oldremoteref 287fi 288fi 289 290merge_name=$(git fmt-merge-msg $log_arg <"$GIT_DIR/FETCH_HEAD")||exit 291case"$rebase"in 292true) 293eval="git-rebase$diffstat$strategy_args$merge_args" 294eval="$eval--onto$merge_head${oldremoteref:-$merge_head}" 295;; 296*) 297eval="git-merge$diffstat$no_commit$squash$no_ff$ff_only" 298eval="$eval$log_arg$strategy_args$merge_args$verbosity$progress" 299eval="$eval\"\$merge_name\"HEAD$merge_head" 300;; 301esac 302eval"exec$eval"