diff options
| author | Junio C Hamano <gitster@pobox.com> | 2015-06-05 12:00:23 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2015-06-05 12:00:23 -0700 |
| commit | 7e46f27fa627c0f9f6f547bef53e5aa2de52dec5 (patch) | |
| tree | f34a803234c9560ed7e28f3459c948cd11b3f01b /git-pull.sh | |
| parent | 06629901444888e5fa491c5f5f24ff03686af9a9 (diff) | |
| parent | db9bb280ed7df7858a2de5d1d0334114dd837be0 (diff) | |
| download | git-7e46f27fa627c0f9f6f547bef53e5aa2de52dec5.tar.xz | |
Merge branch 'pt/pull-ff-vs-merge-ff' into maint
The pull.ff configuration was supposed to override the merge.ff
configuration, but it didn't.
* pt/pull-ff-vs-merge-ff:
pull: parse pull.ff as a bool or string
pull: make pull.ff=true override merge.ff
Diffstat (limited to 'git-pull.sh')
| -rwxr-xr-x | git-pull.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/git-pull.sh b/git-pull.sh index 4d4fc77b05..09f6beabdc 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -54,8 +54,11 @@ then fi # Setup default fast-forward options via `pull.ff` -pull_ff=$(git config pull.ff) +pull_ff=$(bool_or_string_config pull.ff) case "$pull_ff" in +true) + no_ff=--ff + ;; false) no_ff=--no-ff ;; |
