How can I force git merge to use the default merge message instead of loading my editor with said message?
git merge
I have no editor listed in git config -
git config -
Use
export GIT_MERGE_AUTOEDIT=no
or
git merge --no-edit