将gitbash配置到VScode中需要注意如下几步
-
File -> Preference -> Setting ->搜索setting.json -> Edit in settings.json
如下所示
也可以直接在Setting中直接找settings.json文件。
查找settings.json.png
{
"files.autoSave": "afterDelay",
"workbench.colorTheme": "Monokai",
"workbench.sideBar.location": "right",
"window.zoomLevel": 0,
"explorer.confirmDelete": false,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true // HTML自动修复,`
},
{
"language": "vue",
"autoFix": true // vue 自动修复
},
{
"language": "scss",
"autoFix": true
}
],
}
在其中添加
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
这里的路径是gitbash的安装路径。
然后重新启动VScode,就能在终端运行gitbash了
配置结果.png
注意有两点:
- 添加路径的时候一定要注意C:\Program Files\Git\bin\bash.exe中使用的是反双斜杠(\)而不是反单斜杠(\)。
-
在的安装路径中一定是Git中的bin文件中的bash.exe,而不是Git中的git-bash.exe。
注意事项.png
网友评论