$ 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.
Come posso superare l'errore e definire l'editor?
$ 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.
Come posso superare l'errore e definire l'editor?
Risposte:
Oltre a installare vim
o specificare il messaggio di commit sulla riga di comando come il messaggio di errore suggerito, ci sono diversi modi per dire a git quale editor dovrebbe usare. È possibile impostare la core.editor
proprietà (localmente per quel progetto o globalmente per tutto git):
$ git config --global core.editor nano
Puoi anche impostare la EDITOR
variabile d'ambiente, su cui git ripiegherà se core.editor
non è impostato:
$ export EDITOR=nano
La risposta è stata:
sudo apt-get install vim
come era una nuova macchina e vim non era installato.
export EDITOR=vi
?