gpt4 book ai didi

git - 如何使用 Visual Studio Code 作为 git 的默认编辑器?

转载 作者:IT王子 更新时间:2023-10-29 01:12:45 26 4
gpt4 key购买 nike

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

我知道不可能用它来进行 merge (至少在当时是这样)但是有谁知道是否可以用它来查看差异,如果可以的话,命令行选项会是什么需要在 .gitconfig 文件中才能做到这一点吗?

更新 1:

我尝试了一种类似于我为 Notepad++ in the past 所做的方法,即

#!/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:

我已经reliably informed这个功能已经被 VSCode 团队采用,所以我期待 future 的版本包含它。

更新 4:

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

更新 5:

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

最佳答案

在最新版本中(v1.0,于 2016 年 3 月 发布),您现在可以 use VS Code as the default git commit/diff tool .引用自文档:

  1. 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.
  2. 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. enter image description here 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

This leverages the new --diff option you can pass to VS Code to compare two files side by side.

To summarize, here are some examples of where you can use Git with VS Code:

  • git rebase HEAD~3 -i allows to interactive rebase using VS Code
  • git commit allows to use VS Code for the commit message
  • git add -p followed by e for interactive add
  • git difftool <commit>^ <commit> allows to use VS Code as diff editor for changes

关于git - 如何使用 Visual Studio Code 作为 git 的默认编辑器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30024353/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com