关于visual-studio-code:vscode修改终端为git-bash

30次阅读

共计 471 个字符,预计需要花费 2 分钟才能阅读完成。

vscode 批改终端为 git bash

一:找到 git 装置门路


定位到文件夹中失去门路:
“D:/Program Files/Git/bin/bash.exe”

二:vscode 批改配置文件

  "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"
        },
        "GitBash": {"path": "D:/Program Files/Git/bin/bash.exe"}
    },

三:详见下图

正文完
 0