vscode配置默认终端
# vscode 配置默认终端
在 windows 下,我们有些项目需要执行 bash 脚本做相关的自动化处理,需要切换到支持执行 bash 的终端执行,比如 Git Bash
直接将 vscode 的默认终端配置为 Git Bash
,就不用切换来切换去,还可以使用我们熟悉的linux命令快速执行各种操作。
# 配置 setting.json
参考官方文档 (opens new window),修改配置文件, 将下面的配置加到 setting.json 文件中:
{
// ... 其他配置,
"terminal.integrated.profiles.windows": {
"Git-Bash": {
"path": "G:\\Program Files\\Git\\bin\\bash.exe",
"args": []
}
},
"terminal.integrated.defaultProfile.windows": "Git-Bash"
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
配置完成,通过 Ctrl + ` 打开内部终端,默人打开的就是设置的 Git Bash, 想要打开其他类型的终端可以在右边点击倒三角按钮选择
通过 Ctrl + shift + C 打开外部终端,外部终端也想要配置成 Git Bash 可以通过如下配置:
"terminal.external.windowsExec": "G:\\Program Files\\Git\\bin\\bash.exe",
1
编辑此页 (opens new window)
上次更新: 2022/07/05, 09:55:52