如何在 VS Code 中配置 Git Bash

如何在 VS Code 中配置 Git Bash
如何在 VS Code 中配置 Git Bash

目前,“terminal.integrated.shell.windows”在 VS Code 中已弃用。

"terminal.integrated.shell.windows": "C:\\...\\...\\bin\\bash.exe",

Windows 10 系统中 VS Code 配置 Git Bash

第 1 步:打开命令面板(CMD + Shift + P)
第 2 步:搜索“首选项:打开用户设置(JSON)”
第 3 步:通过键入“”(双引号键)创建一个新字段。在引号内输入“terminal”。将出现一个选项列表。
第 4 步:选择 terminal.integrated.profiles.windows。当选择terminal.integrated.profiles.windows时,它将扩展为:

"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": {
    "source": "Git Bash",
    "path": ["C:\\Program Files\\Git\\bin\\bash.exe"],
    "icon": "terminal-bash"
  }
},

第 5 步:将默认终端设置为 Git Bash:

  "terminal.integrated.defaultProfile.windows": "GitBash",

重要提示
defaultProfile.windows 值必须是一个单词才能起作用。

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

作者:牛奇网,本站文章均为辛苦原创,在此严正声明,本站内容严禁采集转载,面斥不雅请好自为之,本文网址:https://www.niuqi360.com/windows/how-vs-code-config-git-bash/

(0)
牛奇网牛奇网
上一篇 2022年5月6日 下午5:20
下一篇 2022年5月6日 下午6:58

相关推荐

发表回复

登录后才能评论