✨: VScode终端没有git bash的解决方法
:东非不开森的主页
:学习的过程就是不断接触错误,不断提升自己,冲鸭
: 如有错误或不足之处,希望可以指正,非常感谢
找到你git bin bash.exe
的安装路径
(每个人不一定一样,根据自己的来)
然后复制把路径的右斜杠\
转义
然后按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": [],
}