git commit has a --no-edit flag which will "use the selected commit message without launching an editor".
For example, when git merge produces conflicts, after these have been resolved running git commit --no-edit will commit without opening the editor, using to the default merge commit message.
I want a way to permanently enforce this behaviour so I don't have to specify --no-edit each time I run git commit.
I can find an equivalent setting for git merge, but nothing for git commit.