当在命令行使用git时,我想知道是否可以使用Visual Studio Code作为默认编辑器,即当创建提交注释并从命令行查看文件的差异时。

我知道不可能使用它来做合并(至少在一分钟),但有人知道是否有可能使用它来查看diff,如果是这样,在.gitconfig文件中需要什么命令行选项来实现这一点吗?

更新1:

我尝试了一种类似于我过去为notepad++所做的方法,即。

#!/bin/sh

"c:/Program Files (x86)/Notepad++/notepad++.exe" -multiInst -notabbar -nosession -noPlugin "$*"

和使用:

#!/bin/sh

"C:\Users\gep13\AppData\Local\Code\app-0.1.0\Code.exe" "$*"

但是这会导致一个错误消息:

C:\temp\testrepo [master +1 ~0 -0]> git commit
[8660:0504/084217:ERROR:crash_reporter_win.cc(70)] Cannot initialize out-of-process crash handler
Aborting commit due to empty commit message.
C:\temp\testrepo [master +1 ~0 -0]>

代码正确地打开,带有预期的内容,但它不等待响应,即单击保存并关闭窗口以返回提示。

更新2:

我刚刚收到了一个VSCode开发人员的回复。看起来这个功能目前不受支持:-(

https://twitter.com/IsidorN/status/595501573880553472

如果你有兴趣看到这个功能被添加,你可以考虑在这里投票:

http://visualstudio.uservoice.com/forums/293070-visual-studio-code/suggestions/7756482-support-git-configure-diff-and-merge-tools

更新3:

我已经得到可靠的消息,VSCode团队已经选择了这个功能,所以我期待着未来的版本能包含它。

更新4:

感谢下面@f-boucheros的注释,我已经能够让VS Code作为默认编辑器来提交注释,rebase等。我仍然想看看是否有可能将它用作diff工具。

更新5:

根据这个问题的公认答案,现在可以使用V1.0版本的代码实现这一点。


当前回答

您需要使用命令:

git config --global core.editor "'C:\Program Files\Microsoft VS Code\code.exe' -n -w"

确保您可以从Git Bash启动编辑器

如果你想使用Code.exe的短路径,你可以通过添加以下行到你的.bash_profile:

alias vscode="C:/Program\ Files/Microsoft\ VS\ Code/Code.exe"

现在,你可以只使用vscode命令(或任何你命名的命令)调用它

一些附加信息:

安装程序会将Visual Studio代码添加到您的 %PATH%,所以从控制台你可以输入'code'打开VS code on 该文件夹。之后,需要重新启动控制台 将%PATH%环境变量更改为 生效。

其他回答

我将Visual Studio Code设置为默认打开。txt文件。接下来我使用了简单的命令:git config—global core。用户编辑“C: \ \用户名\ AppData \本地代码\ \ app-0.7.10 \ Code.exe \ '”。一切都很顺利。

我添加了一个答案,因为其他所有的答案都不够简洁,不适合我的具体情况。我用的是装有M1芯片的MacBook Air 2021

在VS Code中创建默认的git编辑器:

步骤1

执行命令git config——global core。在命令行中编辑“代码—等待”。

步骤2

如果你在这个阶段尝试提交,你可能会得到一个类似这样的错误:

提示:等待编辑器关闭文件…Code -w: Code:命令不存在 错误:编辑器“code -w”有问题。

这意味着你没有在VS code中安装shell命令“code”。使用(command + shift + p)在VS Code中打开命令中心。搜索“code”,选择“Shell Command: Install ' code ' Command in PATH”。这将在路径中添加“代码”。

步骤3

在尝试安装“code”时,你可能会得到一个类似这样的错误:

EACCES:权限被拒绝,断开“/usr/local/bin/code”的链接。

我不知道是什么原因,但一个简单的卸载和重新安装解决它。要卸载,在VS Code命令中心搜索“uninstall”,然后选择“Shell command: uninstall ' Code ' command in PATH”。

步骤4

运行命令git config——global -e来测试新的默认编辑器是什么。你的配置文件应该在vscode文本编辑器中打开

来源:

https://levelup.gitconnected.com/how-to-configure-git-to-use-vs-code-as-the-default-text-editor-ea3670ab525a

VS Code Denied Permission解除usr/local/bin/ Code链接

只是想将这些反斜杠添加到之前的答案,我在Windows 10 CMD上,空格前没有反斜杠它就不能工作。

git config --global core.editor "C:\\Users\\your_user_name\\AppData\\Local\\Programs\\Microsoft\ VS\ Code\\Code.exe"

在最新的版本(v1.0, 2016年3月发布)中,你现在可以使用VS Code作为默认的git提交/diff工具。引自文件:

Make sure you can run code --help from the command line and you get help. if you do not see help, please follow these steps: Mac: Select Shell Command: Install 'Code' command in path from the Command Palette. Command Palette is what pops up when you press shift + ⌘ + P while inside VS Code. (shift + ctrl + P in Windows) Windows: Make sure you selected Add to PATH during the installation. Linux: Make sure you installed Code via our new .deb or .rpm packages. From the command line, run git config --global core.editor "code --wait" Now you can run git config --global -e and use VS Code as editor for configuring Git. Add the following to enable support for using VS Code as diff tool:

[diff]
    tool = default-difftool
[difftool "default-difftool"]
    cmd = code --wait --diff $LOCAL $REMOTE

这利用了新的——diff选项,你可以传递给VS Code 并排比较两个文件。 总结一下,这里有一些可以在VS中使用Git的例子 代码: git rebase HEAD~3 -i允许使用VS Code进行交互rebase git commit允许使用VS Code来提交消息 Git add -p后跟e用于交互式添加 git difftool <commit>^ <commit>允许使用VS Code作为diff编辑器进行更改

我打开我的.gitconfig并修改它:

[core]
    editor = 'C:/Users/miqid/AppData/Local/Code/app-0.1.0/Code.exe'

这对我来说很管用(我用的是Windows 8)。

然而,我注意到,在我的git Bash控制台尝试了任意git提交后,我看到以下消息:

[9168:0504/160114:INFO:renderer_main.cc(212)] Renderer process started

不确定这可能会产生什么后果。