$ 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이 설치되지 않았습니다.