我想将VS Code设置为我的默认git编辑器,用于命令如rebase。这似乎没有记录在VS Code网站上。我发现了一个关于为Windows做这件事的问题,这听起来好像很成功:How to use Visual Studio Code as Default Editor for Git
有没有人在OSX上管理过这个?
答案 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)
然后在终端中使用这两行
$ 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)下,我能够设置整个事情:
/Applications
)vscode
的链接,该链接链接到Visual Studio(在Applications文件夹中)(请确保使用正确的路径)。 **如果〜/ bin文件夹不存在,只需创建它:
cd~&& mkdir bin
如果文件夹〜/ bin存在,只需创建一个链接:
ln -s /Applications/Visual\Studio\Code.app/Contents/Resources/app/bin/code 〜/斌/ vscode
vscode
来打开Visual Studio代码。 vscode
~/bin/
添加到PATH。遵循此(How do I add ~/bin to my path?)~/.gitconfig
编辑全局git配置文件,并使用code
名称设置编辑器。就我而言,它看起来像这样:[芯]
editor = vscode --wait
或者输入
git config --global core.editor“vscode --wait”