Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch
It's not a Git error message, it's the editor as git uses your default editor.
To solve this:
- press "i" (i for insert)
- write your merge message
- press "esc" (escape)
- write ":wq" (write & quit)
- then press enter
Actually it's not an error! It means you should enter some message to mark this merge.
My OS is Ubuntu 14.04
. If you use the same OS, you just need to do this as follows:
-
Type some message
-
CtrlCO
-
Type the file name (such as "Merge_feature01") and press Enter
-
CtrlX to exit
Now if you go to .git and you will find the file "Merge_feature01", that's the merge log actually.
tl;dr ✨ Use an $EDITOR that you like! ✨
The fix is not to memorize cryptic commands, like in the accepted answer, but configuring Git to use an editor that you like and understand!
The underlying problem is that Git by default uses an editor that is too unintuitive to use for most people: Vim. This is because Vim is present everywhere, not because it is user friendly 😄 Now, don't get me wrong, I ❤️ Vim, and while you could set some time aside to learn Vim and try to understand why some people think Vim is the greatest editor in existence, there is a quicker way of fixing this problem :-)
It's really as simple as configuring either of these options
- the git config setting
core.editor
(per project, or globally) - the
VISUAL
orEDITOR
environment variable (this works for other programs as well). Typically stuffingexport VISUAL="vscode --wait"
into your.bashrc
or similar config.
I'll cover the first option for a couple of popular editors, but GitHub has an excellent guide on this for many editors as well.
🔥 To use Atom
Straight from its docs, enter this in a terminal:
git config --global core.editor "atom --wait"
Git normally wait for the editor command to finish before progressing, but since Atom forks to a background process immediately, this won't work, unless you give it the --wait
option. This makes it stay as a foreground process, just as we want.
🦄 To use Sublime Text
For the same reasons as in the Atom case, you need a special flag to signal to the process that it shouldn't fork to the background:
git config --global core.editor "subl -n -w"
🤓 To use Visual Studio Code
git config --global core.editor "code --wait"
Just Do,
CTRL + X
CTRL + C
It will ask you to save file, Press Y, then you are done.
Instead, you could git CtrlZ and retry the commit but this time add " -m " with a message in quotes after it, then it will commit without prompting you with that page.