如何在git / macbook中将VScode设置为核心编辑器

时间:2019-03-27 21:15:26

标签: git visual-studio-code

我无法将Visual Studio Code设置为git的核心编辑器。当我尝试执行git commit时,我只会看到有关编辑器存在问题的信息。

MacBook-Air-Agata:~ agataskrzypczyk$ git config --global core.editor "/Applications/Visual Studio Code.app" --wait

MacBook-Air-Agata:~ agataskrzypczyk$ git config --global core.editor
/Applications/Visual Studio Code.app

MacBook-Air-Agata:~ agataskrzypczyk$ cd nowy

MacBook-Air-Agata:nowy agataskrzypczyk$ git commit

hint: Waiting for your editor to close the file... /Applications/Visual Studio Code.app: /Applications/Visual: No such file or directory
error: There was a problem with the editor '/Applications/Visual Studio Code.app'.
Please supply the message using either -m or -F option.
MacBook-Air-Agata:nowy agataskrzypczyk$

2 个答案:

答案 0 :(得分:2)

我建议您将Visual Studio Code选项设置为从命令行启动。为此,请按照文档here中的说明进行操作。

  • 启动VS代码。
  • 打开命令面板(⇧⌘P)并输入'shell 命令”以找到Shell命令:在PATH中安装“代码”命令 命令。

然后尝试使用以下命令设置核心编辑器:

git config --global core.editor "code --wait"

然后我认为您git commit不会有问题。

答案 1 :(得分:1)

git config --global core.editor "code"