< YALU STUDIO >

How to use Git Bash as Visual Studio Code Terminal on Windows

Word count: 81 / Reading time: 1 min
2020/07/05 Share
  1. Use Ctrl + Shift + P to open the command search

  2. Type “Open User Settings” and hit Enter

  3. Click Open Settings (JSON) at the top right corner

  4. Set settings for "terminal.integrated.shell.windows"

    1
    2
    3
    4
    5
    {
    // Some other settings...
    // The setting might look like this
    "terminal.integrated.shell.windows": "D:\\Git\\bin\\bash.exe",
    }
    • If this field is not in the JSON, add it at the end
    • Change the path based on your Git installation location
CATALOG