Sync with maint

* maint:
  pull: do not abuse 'break' inside a shell 'case'
maint
Junio C Hamano 2014-06-12 12:22:38 -07:00
commit 75cc6c67e2
1 changed files with 0 additions and 2 deletions

View File

@ -58,11 +58,9 @@ pull_ff=$(git config pull.ff)
case "$pull_ff" in case "$pull_ff" in
false) false)
no_ff=--no-ff no_ff=--no-ff
break
;; ;;
only) only)
ff_only=--ff-only ff_only=--ff-only
break
;; ;;
esac esac