$ git commit
error: cannot run vim: No such file or directory
error: There was a problem with the editor 'vim'.
Please supply the message using either -m or -F option.
如何克服错误并定义编辑器?
答案1
vim
除了在命令行上安装或指定提交消息(如建议的错误消息)之外,还有多种方法可以告诉 git 应使用哪个编辑器。您可以设置该core.editor
属性(该项目的本地属性,或所有 git 的全局属性):
$ git config --global core.editor nano
您还可以设置环境变量,如果未设置,EDITOR
git 将依赖该环境变量:core.editor
$ export EDITOR=nano
答案2
答案是:
sudo apt-get install vim
因为是新机器,没有安装vim。