こういうときは、、
$ git commit
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
こうして core.editor に /usr/bin/vim を指定するとOK
git config --global core.editor "/usr/bin/vim"
こういうときは、、
$ git commit
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
こうして core.editor に /usr/bin/vim を指定するとOK
git config --global core.editor "/usr/bin/vim"