欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2024-02-26 13:43:52
...

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已经废弃。