先来看看下面的效果图

怎么配置

直接打开设置里面的json文件(左下角),在 profiles -> files 下面看到配置文件,在最后面添加一个对象

1
2
3
4
5
6
7
8
9
10
{
// 这里我的 git 安装路径:C:\Program Files\Git\git-bash.exe
// commandline 要填写的值是 C:\Program Files\Git\bin\bash.exe 记得合适一下这个文件路径是否存在
"commandline": "C:\\Program Files\\Git\\bin\\bash.exe", // window上是 git 安装路径/bin/bash.exe
"elevate": false,
"guid": "{37a3b6ec-1f39-46a9-83f2-b5a412ea50d5}", // 这个id随机生成的,以随意写
"hidden": false, //是否隐藏这个配置文件
"icon": "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico", // 图标路径是 git 安装路径mingw64/share/git/git-for-windows.ico
"name": "Git Bash" // 标签名称
}

图形界面配置如下