【Git】vscode配置bash终端作为默认终端

此博客主要介绍了 Windows 下配置 bash 为 terminal。

主要流程

  • 打开 settings
  • 配置如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"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"
},
"Git-Bash": {
"path": "D:/Git/bin/bash.exe"
}
},
// "terminal.integrated.automationShell.windows": "‪D:/Git/bin/bash.exe",
"git.path": "D:/Git/cmd/git.exe",
"terminal.integrated.defaultProfile.windows": "Git-Bash",