vscode配置gitbash终端的方法步骤

来自:网络
时间:2023-07-24
阅读:

打开vscode

文件->首选项->设置,打开设置

搜索shell windows

vscode配置gitbash终端的方法步骤

点击在setting.json中编辑

vscode配置gitbash终端的方法步骤

修改配置文件,将下面的配置加到 setting.json文件

"terminal.integrated.profiles.windows": {
    "PowerShell -NoProfile": {
      "source": "PowerShell",
      "args": [
        "-NoProfile"
      ]
    },
    "Git-Bash": {
      "path": "D:\\Program Files\\Git\\bin\\bash.exe",
      "args": []
    }
  },
"terminal.integrated.defaultProfile.windows": "Git-Bash",

此时点击创建命令行窗口,已经显示出Git-Bash了

vscode配置gitbash终端的方法步骤

如果不想默认使用Git-Bash作为命令行的话,置空即可。

vscode配置gitbash终端的方法步骤

 到此这篇关于vscode配置gitbash终端的方法步骤的文章就介绍到这了,更多相关vscode配置gitbash终端内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

返回顶部
顶部