一. ctrl+shift+p 调出 快捷命令菜单,输入 terminal
二,打开 setting 配置文件 添加配置
注意 gitBash 的 path 路径,是在 bin 目录中 ,如果是 选择 git 安装目录的 git-bash.exe 就会出现 打开 外部终端的情况。不过,默认打开外部终端也可以是一种方式。
绿色部分是 配置 gitbash 的主要代码:
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"gitBash": {
"path":"S:\\Git\\bin\\bash.exe"
}
},
"terminal.integrated.defaultProfile.windows": "gitBash",
热门评论
不错!