git commit
上記コマンドを利用した際にvscodeでコメントしたかったんだけどうまく起動してくれないで以下のようなエラーがでました。
$ git commit
hint: Waiting for your editor to close the file... vscode --wait: vscode: command not found
error: There was a problem with the editor 'vscode --wait'.
Please supply the message using either -m or -F option.
Code language: JavaScript (javascript)
ここで発生したエラーの対処法を紹介
結論
git configの設定をしましょう。
なんかうまいことvscodeを開けていなかったようなので設定しなおすことにしました。
$ git config --global core.editor 'code --wait'
Code language: PHP (php)
これがvscode用のgit configの設定らしいです。
これをgit立ち上げて設定(コマンドを打つ)すれば解決しました。
意外と大きな問題じゃなかった。
まとめ
ググる力は大切だなあ…