【发布时间】:2020-09-08 00:24:21
【问题描述】:
我刚刚开始自定义 Windows 终端。
我想添加 Git,它会在程序的 outside 中打开 git-bash.exe。
我在 settings.json 中遗漏了什么?
这就是 settings.json "profiles" -> "list" 数组
{
"guid": "{00000000-0000-0000-0000-000000000001}",
"name" : "Git",
"commandline" : "I:/Git/git-bash.exe",
"hidden": false,
"icon" : "I:/Git/mingw64/share/git/git-for-windows.ico",
"padding": "8, 8, 8, 8",
"closeOnExit" : "always",
"snapOnInput": true,
"historySize" : 9001,
"startingDirectory": "%USERPROFILE%"
}
【问题讨论】:
标签: windows git terminal windows-terminal