How to use gitbash in visual studio code (windows)

Git bash is very useful shell you might need to integrate with the visual studio code.

Go to file -> preferences -> setting
Paste these in USER SETTING

{
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": [
"--init-file",
"C:\\Program Files\\Git\\etc\\profile"
]
}

No comments:

Post a Comment