22 August 2018 | 1 min read

Load Git-Bash as terminal on VSCODE

VSCODE

Hi there, If you are using VSCODE on Windows and prefer to use Git-Bash instead of Windows CMD as terminal, just add this snipet into your "user-setting" to override the default setting
{
  "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\git-cmd.exe",
  "terminal.integrated.shellArgs.windows": ["--command=usr/bin/bash.exe","-l","-i"]
}

Then press Ctrl+` to open terminal on your VSCODE

Robbi Nespu | Code, Editor, Microsoft


Discussion and feedback