赞
踩
打开vscode
文件->首选项->设置,打开设置
搜索shell windows
点击在setting.json中编辑
修改配置文件,将下面的配置加到 setting.json文件
"terminal.integrated.profiles.windows": {
"PowerShell -NoProfile": {
"source": "PowerShell",
"args": [
"-NoProfile"
]
},
"Git-Bash": {
"path": "D:\\Program Files\\Git\\bin\\bash.exe",
"args": []
}
},
"terminal.integrated.defaultProfile.windows": "Git-Bash",
此时点击创建命令行窗口,已经显示出Git-Bash了
如果不想默认使用Git-Bash作为命令行的话,置空即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。