VSCode 실행 후 f1 키 눌러

Preferences: Open User Settings (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"
},
"Git Bash": {
"source": "Git Bash",
"path": ["C:\\Program Files\\Git\\bin\\bash.exe"]
}
},
"terminal.integrated.defaultProfile.windows": "Git Bash"