vscode 配置 gitbash 终端,并设置为默认

  • Post author:
  • Post category:其他




1. 使gitbash生效


  1. 打开vscode
  2. 文件->首选项->设置,打开设置
  3. 搜索

    shell windows

image.png

  1. 点击在

    setting.json

    中编辑

image.png

在vscode升级后,在默认的终端配置文件中显示的是

"Git Bash"

,因为中间有空格所以无法识别。

image.png

  1. 可以在中间增加短横杠

    "-"

    ,更改成

    "Git-Bash"



    并删除原内容,增加

    "path"

    ,值为

    bash.exe

    所在目录。

    !!!需要是

    bin

    目录下的

    bash.exe

    !!!

    image.png

  2. 此时点击终端->新建终端,就能看到

    Git-Bash

    被添加到终端列表中。

image.png



2. 将gitbash设置为默认终端


  1. 打开vscode
  2. 文件->首选项->设置,打开设置
  3. 搜索shell windows

image.png



  1. Terminal › Integrated › Default Profile: Windows

    中选择

    Git-Bash

    即可设置其为默认终端。

image.png



版权声明:本文为qq_44498977原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。