いくつかの git の変更をコミットしようとしていますが、実行すると:
git commit -a
戻ります
gvim -f: gvim: command not found
error: There was a problem with the editor 'gvim -f'.
Please supply the message using either -m or -F option.
私は初心者で、これが何を意味するのかわかりません。
いくつかの git の変更をコミットしようとしていますが、実行すると:
git commit -a
戻ります
gvim -f: gvim: command not found
error: There was a problem with the editor 'gvim -f'.
Please supply the message using either -m or -F option.
私は初心者で、これが何を意味するのかわかりません。
gvim
でデフォルトのエディターとして構成しましgit
たが、システムにインストールしていません。次の 3 つの選択肢があります。
1) システムにgvim エディターをインストールします
2) のデフォルト エディタを次のように変更しますgit
。
git config --global core.editor "path_of_your_favourite_text_editor"
3) テキストエディタを使用せずにコミットを続ける (実際には良い解決策ではありません)
git commit -a -m 'commit message'
これについてはわかりませんが、 default editor の Git ドキュメントを見ると、エディターが設定されていない場合は vi にフォールバックします。エラーが示唆しているように、-m
オプションを渡すことができるので、エディターを使用する必要はありません。
git commit -a -m 'committing all files'