I have modified my local .git/config file to allow only fast-forward merges on master branch:
[branch "master"]
remote = origin
merge = refs/heads/master
mergeOptions = --ff-only
However I can't share this file with other repositories by pushing it on the remote server since it is not versioned.
How can I enforce all workstations sharing the same repository to use this option as well?