EGit 2.3 new --no-ff option, how to use it?

In EGit 2.3 they added the ability to fast forward according to release documents

"Support for git merge --no-ff as an EGit preference.

http://wiki.eclipse.org/EGit/New_and_Noteworthy/2.3

Question: I have, where do you set this preference? I tried settings -> Team -> git -> Configuration -> Repository Settings, and then in the [Core] settings mergeoptions = --no-ff, but this does not work.

+4
source share
1 answer

The following merge options are recognized, which are used for all branches:

[merge] ff = true|false|only 

If you want to configure it only for a specific branch, use the following:

 [branch "name"] mergeoptions = --ff|--no-ff|--ff-only 

I have also expanded the description into New and Noteworthy .

+6
source

All Articles