VScode终端没有git bash的解决方法

✨: VScode终端没有git bash的解决方法

:东非不开森的主页

:学习的过程就是不断接触错误,不断提升自己,冲鸭

: 如有错误或不足之处,希望可以指正,非常感谢


找到你git bin bash.exe的安装路径
(每个人不一定一样,根据自己的来)
然后复制把路径的右斜杠\转义

例如这样
在这里插入图片描述

本地文件:

VScode终端没有git bash的解决方法_第1张图片

然后按F1(笔记本一般F1 Fn一起按),输入settings.json,不要回车,点打开用户配置
加上这些代码保存就行了

"terminal.integrated.profiles.windows": {
    "PowerShell": {
        "source": "PowerShell",
        "icon": "terminal-powershell"
    },
    "Command Prompt": {
        "path": [
            "${env:windir}\\Sysnative\\cmd.exe",
            "${env:windir}\\System32\\cmd.exe"
        ],
        "args": [],
        "icon": "terminal-cmd"
    },
    "Git-Bash": {
        "path": "D:\\Git\\bin\\bash.exe",
        "args": [],
    }

VScode终端没有git bash的解决方法_第2张图片

你可能感兴趣的:(git,vscode,git,bash)