美文网首页
vscode配置git bash

vscode配置git bash

作者: 知成 | 来源:发表于2022-03-10 09:44 被阅读0次

最近在使用git的时候总是没有自动补充提示,还需要打开一个vscode一个git shell很麻烦,因此想将vscode的终端配置成git的bash,踩了一个坑在此做一些记录:

windows系统,vscode配置终端版本1.65:

 "git.path": "**git\\install\\Git\\bin\\git.exe",
"terminal.integrated.profiles.windows": {
        "PowerShell": {
            "source": "PowerShell",
            "icon": "terminal-powershell"
        },
        "Command Prompt": {
            "path": [
                "${***\\cmd.exe",
                "${***\\cmd.exe"
            ],
            "args": [],
            "icon": "terminal-cmd"
        },
        "Git-Bash": {
            "path": "***\\bin\\bash.exe"
        }
    },
    "terminal.integrated.defaultProfile.windows": "Git-Bash"

上面的路径需要替换为自己的路径;

  • git.path是git.exe所在的目录路径;
    “terminal.integrated.profiles.windows”为新版配置终端json文件的Key;

  • “path”为git的 bash.exe所在路径

  • “terminal.integrated.defaultProfile.windows”为vscode默认终端配置,可配置可不配置;

配置完重启vscode即可;

注意:以上的操作的前提是git已经配置了环境变量,否则将无法生效,会报出“***value is not accept. valid values:"PowerShell"****”的错误;

git环境变量配置:

  • 将安装路径中,git的bin目录路径添加到环境变量的path中即可;

相关文章

网友评论

      本文标题:vscode配置git bash

      本文链接:https://www.haomeiwen.com/subject/elrfdrtx.html