天天看点

vscode中修改默认的终端为Git Bash

windows下,npm项目有的情况下需要执行bash脚本,如果每次都是从文件夹通过“Git Bash Here”打开的话,未免也太繁琐,所以配置vscode的终端为Git Bash,一劳永逸。

打开vscode的设置文件,settings.json,添加以下设置:

"terminal.integrated.profiles.windows": {
    "Git Bash": {
      "source": "Git Bash"
    }
  },
  "terminal.integrated.defaultProfile.windows": "Git Bash",
           

注意:以前的

terminal.integrated.shell.windows

已经废弃。