summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-09-08 20:23:16 -0500
committerJunio C Hamano <gitster@pobox.com>2013-09-10 14:34:52 -0700
commita071cce564060f77aaea3966308c5420d84a375c (patch)
tree64e4ddfe66bfe7b41068f67309d65a1cbe2cc33f
parent26d7bc92ee023e516c37078c704c001db07e6161 (diff)
downloadgit-fc/discourage-pull-no-ff.tar.gz
pull: add warning on non-ff mergesfc/discourage-pull-no-ff
To prepare our uses for the upcoming changes we should warn them and let them know that they will need to specify a merge or a rebase in the future (when a non-fast-forward situation arises). Also, let them know we fallback to 'git pull --merge', so when the obsoletion of this mode comes, they know what to type without interrupting or changing their workflow. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xgit-pull.sh15
1 files changed, 12 insertions, 3 deletions
diff --git a/git-pull.sh b/git-pull.sh
index 580d63336e..1f777de2d7 100755
--- a/git-pull.sh
+++ b/git-pull.sh
@@ -62,7 +62,7 @@ then
echo "Please use pull.mode and branch.<name>.pullmode instead."
fi
fi
-test -z "$mode" && mode=merge
+test -z "$mode" && mode=default
dry_run=
while :
do
@@ -286,12 +286,21 @@ case "$merge_head" in
*)
# check if a non-fast-foward merge would be needed
merge_head=${merge_head% }
- if test "$mode" = merge-ff-only -a -z "$no_ff$ff_only${squash#--no-squash}" &&
+ if test -z "$no_ff$ff_only${squash#--no-squash}" &&
test -n "$orig_head" &&
! git merge-base --is-ancestor "$orig_head" "$merge_head" &&
! git merge-base --is-ancestor "$merge_head" "$orig_head"
then
- die "The pull was not fast-forward, please either merge or rebase."
+ case "$mode" in
+ merge-ff-only)
+ die "The pull was not fast-forward, please either merge or rebase."
+ ;;
+ default)
+ say "The pull was not fast-forward, in the future you would have to choose
+a merge or a rebase, falling back to old style for now (git pull --merge).
+Read 'git pull --help' for more information."
+ ;;
+ esac
fi
;;
esac