Start an interactive logon shell for Git Bash

Provide additional arguments to `bash.exe` to get an interactive login shell.
This ensures e.g. `.profile` and `.bash_profile` are sourced. As there’s no way
to have an existing session under Windows, `--login` is mandatory. Each bash
session must be started from scratch.

Fixes #105
This commit is contained in:
Sebastian Staudt 2017-08-07 10:07:07 +02:00 committed by GitHub
parent 7885badbfd
commit d0f378764f

View File

@ -41,6 +41,7 @@ export class GitBashShellProvider extends ShellProvider {
id: 'git-bash',
name: 'Git-Bash',
command: path.join(gitBashPath, 'bin', 'bash.exe'),
args: [ '--login', '-i' ],
env: {
TERM: 'cygwin',
}