X-Git-Url: https://git.octo.it/?p=git.git;a=blobdiff_plain;f=git-pull.sh;h=4611ae644e08e4ab115633ab86f1f02976663169;hp=0991d5f14cd6d903572a041cfbfe3cde219c738f;hb=162f41292167a800432fc6bbacfcd9f93a90b0c8;hpb=1ed91937e5cd59fdbdfa5f15f6fac132d2b21ce0 diff --git a/git-pull.sh b/git-pull.sh index 0991d5f1..4611ae64 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -55,9 +55,17 @@ then # First update the working tree to match $curr_head. echo >&2 "Warning: fetch updated the current branch head." - echo >&2 "Warning: fast forwarding your working tree." + echo >&2 "Warning: fast forwarding your working tree from" + echo >&2 "Warning: $orig_head commit." + git-update-index --refresh 2>/dev/null git-read-tree -u -m "$orig_head" "$curr_head" || - die "You need to first update your working tree." + die 'Cannot fast-forward your working tree. +After making sure that you saved anything precious from +$ git diff '$orig_head' +output, run +$ git reset --hard +to recover.' + fi merge_head=$(sed -e '/ not-for-merge /d' \ @@ -70,21 +78,17 @@ case "$merge_head" in exit 0 ;; ?*' '?*) - var=`git-var -l | sed -ne 's/^pull\.octopus=/-s /p'` - if test '' = "$var" + var=`git-repo-config --get pull.octopus` + if test -n "$var" then - strategy_default_args='-s octopus' - else - strategy_default_args=$var + strategy_default_args="-s $var" fi ;; *) - var=`git-var -l | sed -ne 's/^pull\.twohead=/-s /p'` - if test '' = "$var" - then - strategy_default_args='-s recursive' - else - strategy_default_args=$var + var=`git-repo-config --get pull.twohead` + if test -n "$var" + then + strategy_default_args="-s $var" fi ;; esac