当前位置:   article > 正文

vscode 配置 gitbash 终端_在vscode怎么操作gitbash命令行

在vscode怎么操作gitbash命令行
  1. 打开vscode

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

  3. 搜索shell windows
    在这里插入图片描述

  4. 点击在setting.json中编辑
    在这里插入图片描述

  5. 修改配置文件,将下面的配置加到 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",
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  1. 此时点击创建命令行窗口,已经显示出Git-Bash了
    在这里插入图片描述

  2. 如果不想默认使用Git-Bash作为命令行的话,置空即可。
    在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号