chengaofeng
发布于 2024-10-16 / 4 阅读
0
0

设置git默认编辑器为vscode

# 将默认编辑器更改为 nano

git config --global core.editor "nano"

# 将默认编辑器更改为 VS Code

git config --global core.editor "code --wait"


评论