把 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
具体参考官方说明