VS Code 配置 Git 和 Git-Bash
一、打开 VS Code 同时按住 Ctrl + shift + p
键,在上方弹出的窗口中搜索 用户设置
:
二、回车打开 settings.json
配置文件,在最后面添加下面这几行:
{
// 配置 git 路径
"git.path": "D:\\Git\\bin\\git.exe",
// 配置 Git-Bash 路径
"terminal.integrated.profiles.windows": {
"Git-Bash": {
"path": "D:\\Git\\bin\\bash.exe",
"args": []
}
},
// 配置默认使用 Git-Bash
"terminal.integrated.defaultProfile.windows": "Git-Bash",
}
三、保存配置文件后重启 VS Code 即可生效~
License:
CC BY 4.0