git-for-windows/git-sdk-64

Adding shell to VSCode

Ena-Shepherd opened this issue · 2 comments

Git SDK does not currently appear on available shell list on VSCode

You can probably add a terminal profile.

dscho commented

Something like this should work:

{
  "terminal.integrated.profiles.gitsdk": {
    "Custom Init": {
      "path": "C:\\git-sdk-64\\usr\\bin\\bash.exe",
      "args": [
         "-li"
      ]
    }
  },
  "terminal.integrated.defaultProfile.gitsdk": "Custom Init"
}