欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

把 VS Code 设为 Git 的默认编辑器--macOS

程序员文章站 2022-03-11 09:05:22
...

1.在PATH中安装code命令。VS Code 中, command + shift + p 打开命令输入框,输入 install command ‘code’ in PATH。
2.终端中执行命令 git config --global core.editor “code --wait”
3.终端中执行命令 git config --global -e,在git配置文件中加入以下内容保存即可。

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

具体参考官方说明