vscode 1.60 terminal git bash windows

On Windows there has been a problem with Git Bash not recognizing since version 1.60 in Vscode, the following settings.json part is needed to bring it back (need the whole part, not just for git bash)

{
      "terminal.integrated.profiles.windows": {
        "PowerShell": {
          "source": "PowerShell",
          "icon": "terminal-powershell"
        },
        "Command Prompt": {
          "path": [
            "${env:windir}\\Sysnative\\cmd.exe",
            "${env:windir}\\System32\\cmd.exe"
          ],
          "args": [],
          "icon": "terminal-cmd"
        },
        "GitBash": {      
          "path": "C:\\Dev\\Git\\bin\\bash.exe",
          "icon": "terminal-bash"
        }
      },
      "terminal.integrated.defaultProfile.windows": "GitBash",      
      "terminal.integrated.automationShell.windows": "C:\\Dev\\Git\\bin\\bash.exe"
}
Add to my src(0)

No account yet? Register

Install VSCode on Linux Mint using Terminal

sudo apt update
sudo apt install apt-transport-https
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
sudo apt update -y
sudo apt install code -y
Add to my src(0)

No account yet? Register