As a newbie git user, when I try to commit my work with
git commit -a -v
and I enter a commit message in my editor, I close the file, and g
I was having this problem. I just installed 1.8.0 earlier, and I found I had to modify the above slightly. I'm very much new at all of this, but essentially it seems that, when committing, it'll use content.editor, not core.editor, at least if you have something set for content.editor.
So, it was
git config --global content.editor "pico -w"
that finally let me commit! Obviously, of course, use whatever editor you use.
Hope this helps somebody someday!