diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-12 12:22:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-12 12:22:38 -0700 |
commit | 75cc6c67e25656c1b19c7c8f6ca29d1463aefef4 (patch) | |
tree | b7515ad7e763f6e05757eeafbbca086129187a7a | |
parent | Update draft release notes to 2.1 (diff) | |
parent | Merge branch 'jc/rev-parse-argh-dashed-multi-words' into maint (diff) | |
download | tgif-75cc6c67e25656c1b19c7c8f6ca29d1463aefef4.tar.xz |
Sync with maint
* maint:
pull: do not abuse 'break' inside a shell 'case'
-rwxr-xr-x | git-pull.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/git-pull.sh b/git-pull.sh index cfc589dc15..18a394fcc4 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -58,11 +58,9 @@ pull_ff=$(git config pull.ff) case "$pull_ff" in false) no_ff=--no-ff - break ;; only) ff_only=--ff-only - break ;; esac |