【极客日常】2021新版本VSCode设置git-bash为终端的方法

截至2021.9,不知道哪天更新了vscode,发现默认的终端从以前的git-bash变成了powershell,笔者用的windows电脑,于是乎要解决这个问题,把powershell变回git-bash。

打开settings,发现以前的terminal.integrated.shell.windows设置已经失效,不能再用。在settings的图形界面查看shell设置,默认的选项变成了PowerShellCommand PromptJavascript Debug Terminal,不能直接指定git-bash路径。

经过一番查找,发现官方文档已经说明可以通过设置terminal.integrated.profiles.windows的方法,增加一个shell选项,从而达到目的。于是我们可以在settings里添加一个git-bash选项:

"terminal.integrated.profiles.windows": {
    "git-bash": {
        "path": "X:\\GIT_ROOT\\bin\\bash.exe"
    }
}

然后在shell选项里就能选择git-bash了。试试看吧~

上一篇:解决Visua SC的运行时不能输出数据


下一篇:mac bigsur 系统下,command + c 会触发新建一个Terminal窗口问题