hint: Waiting for your editor to close the file ... error: cannot spawn vim: No such file or directory
error: unbale to start editor 'vim'
Please supply the message using either -m or -F option
网上有一个解决办法:说因为默认编辑器不是vim,所以需要把它设置成vim
通过
git config --global core.editor vim
将core.editor默认编辑修改为
vim
但是我试了这种方法,好像是因为找不到vim,所以无法修改,任然报错。
最后解决方法:
git config --global core.editor /usr/bin/vim
截图如下:
粉丝