1. 打开VS Code设置,输入shell:Windows后,点击settings.json
2. json文件中默认配置
如果你的json配置文件中没有如下参数,直接复制拿走
对应路径改成自己本地即可
"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"
},
"Windows PowerShell": {
"path": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
},
"gitbash": { // 注意key的命名,之前命名为Git Bash,重启Vscode后怎么也显示不出来
// 设置并添加git-bash的local安装路径
"path": "C:\\application\\work\\git\\Git\\bin\\bash.exe"
}
},
"terminal.integrated.defaultProfile.windows": "gitbash" // 对应上面的key
3. 可以看到默认打开Git Bash终端、也可选择其他终端