将Visual Studio代码设置为OSX上的全局Git编辑器

时间:2016-01-12 14:16:48

标签: git macos visual-studio-code

我想将VS Code设置为我的默认git编辑器,用于命令如rebase。这似乎没有记录在VS Code网站上。我发现了一个关于为Windows做这件事的问题,这听起来好像很成功:How to use Visual Studio Code as Default Editor for Git

有没有人在OSX上管理过这个?

4 个答案:

答案 0 :(得分:4)

目前,VS Code无法实现这一目标,但计划在未来使用。

我们的VS Code 1.0版本更新:

现在可以了!您需要做的就是使用命令行中新引入的MS SQL server(Native)选项将Code配置为git编辑器。

答案 1 :(得分:4)

为我工作。

  

从VSCode指令程序(Shift + Command + P)安装“代码”

搜索:

  

Shell命令:在“ PATH”中安装“ code”命令

安装。

之后……使用新的编辑器在终端上运行config git的命令:

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

答案 2 :(得分:3)

安装"代码"来自VSCode指挥官(Shift + Command + P) enter image description here

然后在终端中使用这两行

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

如果你想看到本地git配置,

$ cd /path/to/git/repo/
$ git config -e

答案 3 :(得分:1)

OS X El Capitan(10.11.4)下,我能够设置整个事情:

  1. 在OS X上安装Visual Code Studio(确保它位于Applications文件夹/Applications
  2. 使用以下命令创建一个名为vscode的链接,该链接链接到Visual Studio(在Applications文件夹中)(请确保使用正确的路径)。
  3. **如果〜/ bin文件夹不存在,只需创建它:

      

    cd~&& mkdir bin

    如果文件夹〜/ bin存在,只需创建一个链接:

      

    ln -s   /Applications/Visual\Studio\Code.app/Contents/Resources/app/bin/code   〜/斌/ vscode

    1. 重新启动终端/ shell,您应该可以通过在终端窗口中键入vscode来打开Visual Studio代码。
    2.   

      vscode

      1. Visual Studio应该打开。如果没有,你就有错误。在OS X下将~/bin/添加到PATH。遵循此(How do I add ~/bin to my path?
      2. 使用~/.gitconfig编辑全局git配置文件,并使用code名称设置编辑器。就我而言,它看起来像这样:
      3.   

        [芯]
          editor = vscode --wait

        或者输入

          

        git config --global core.editor“vscode --wait”

        enter image description here

        1. 保存档案&重启终端窗口。而已!。现在,您应该可以使用Visual Studio Code输入提交描述了!