How can I force git merge to use the default merge message instead of loading my editor with said message?
I have no editor listed in git config -l, so I'm not sure why it opens an editor.
|
How can I force git merge to use the default merge message instead of loading my editor with said message? I have no editor listed in git config -l, so I'm not sure why it opens an editor. |
|||
|
Found the answer after some digging edit your ~/.gitconfig with the following
EDIT: As per Mark's suggestion, this way, |
|||||
|
|
Use
or
|
|||
|
|
This is a new feature of Git, to use the old one (don't provide a message on merge) but those two lines in your
|
|||
|
|
--no-edit? – Joachim Isaksson Oct 5 '12 at 18:52