其他分享
首页 > 其他分享> > VScode 配置最新 git-bash 为默认终端

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

作者:互联网

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

2、打开 json 文件并添加以下内容

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

3、重新打开 VScode 软件

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

标签:git,VScode,terminal,Git,Bash,integrated,bash
来源: https://www.cnblogs.com/lfl17718347843/p/15436991.html