VScode 配置最新 git-bash 为默认终端

1、去官网下载 git 客户端并安装(略)

2、打开 json 文件并添加以下内容
VScode 配置最新 git-bash 为默认终端

VScode 配置最新 git-bash 为默认终端

"terminal.integrated.profiles.windows": {
    "Git-Bash": {
        "path": "D:\\Git\\bin\\bash.exe",
        "args": [],
        "icon": "terminal-bash"
    },
 },
"terminal.integrated.defaultProfile.windows": "Git-Bash",

VScode 配置最新 git-bash 为默认终端

3、重新打开 VScode 软件
VScode 配置最新 git-bash 为默认终端
VScode 配置最新 git-bash 为默认终端

两个对比一下一样那就是对了。

上一篇:C# DataTable 和List之间相互转换的方法(转)


下一篇:06_02、面向对象的特征一:封装