集成git-base到vscode中
首先,在VSCODE界面左下角点击“齿轮状按钮”,点击进入“设置”界面
齿轮状按钮
在设置界面中搜索或者手动滑动找到
Terminal › Integrated › Automation Shell: Windows
点击“在setting.json中编辑”,
如图,在编辑中添加bash.exe和git.exe的路径:
“terminal.integrated.shell.windows”: “F:\Git\bin\bash.exe”,
“git.path”: “F:\Git\bin\git.exe”
注意是bash.exe和git.exe,而不是git-bash.exe,我最开始也是错了
接下来关闭vscode,然后重新打开就可以使用了
更新于2021-05-15