Skip to content

Commit eb8dc05

Browse files
pyokagangitster
authored andcommitted
pull: make pull.ff=true override merge.ff
Since b814da8 (pull: add pull.ff configuration, 2014-01-15), running git-pull with the configuration pull.ff=false or pull.ff=only is equivalent to passing --no-ff and --ff-only to git-merge. However, if pull.ff=true, no switch is passed to git-merge. This leads to the confusing behavior where pull.ff=false or pull.ff=only is able to override merge.ff, while pull.ff=true is unable to. Fix this by adding the --ff switch if pull.ff=true, and add a test to catch future regressions. Furthermore, clarify in the documentation that pull.ff overrides merge.ff. Signed-off-by: Paul Tan <[email protected]> Reviewed-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3d4a3ff commit eb8dc05

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

Documentation/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2033,7 +2033,7 @@ pull.ff::
20332033
a case (equivalent to giving the `--no-ff` option from the command
20342034
line). When set to `only`, only such fast-forward merges are
20352035
allowed (equivalent to giving the `--ff-only` option from the
2036-
command line).
2036+
command line). This setting overrides `merge.ff` when pulling.
20372037

20382038
pull.rebase::
20392039
When true, rebase branches on top of the fetched branch, instead

git-pull.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ fi
5656
# Setup default fast-forward options via `pull.ff`
5757
pull_ff=$(git config pull.ff)
5858
case "$pull_ff" in
59+
true)
60+
no_ff=--ff
61+
;;
5962
false)
6063
no_ff=--no-ff
6164
;;

t/t7601-merge-pull-config.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ test_expect_success 'fast-forward pull succeeds with "true" in pull.ff' '
4545
test "$(git rev-parse HEAD)" = "$(git rev-parse c1)"
4646
'
4747

48+
test_expect_success 'pull.ff=true overrides merge.ff=false' '
49+
git reset --hard c0 &&
50+
test_config merge.ff false &&
51+
test_config pull.ff true &&
52+
git pull . c1 &&
53+
test "$(git rev-parse HEAD)" = "$(git rev-parse c1)"
54+
'
55+
4856
test_expect_success 'fast-forward pull creates merge with "false" in pull.ff' '
4957
git reset --hard c0 &&
5058
test_config pull.ff false &&

0 commit comments

Comments
 (0)