vscode终端设置为git bash终端
程序员文章站
2024-02-26 14:00:40
...
vscode终端设置为git bash终端
解决方法:
1.打开 vscode编辑器
2.打开 左下角齿轮(设置)
3.打开 设置
4.搜索栏搜索 terminal.integrated.shell.windows
5.点击 在settings.json中编辑 或者直接打开 settings.json 文件也可以
6.写入代码:
{
"terminal.integrated.shell.windows": "F:/Git/bin/bash.exe"
}
最主要的就是 “terminal.integrated.shell.windows”: “F:/Git/bin/bash.exe” 这个键值对代码块
F:/Git/bin/bash.exe 代表的是你的git的bash.exe路径,一般默认在c盘
一定要注意斜杠方向和符号的中英文,必须得是英文
上一篇: Android 文件数据存储实例详解
下一篇: Yii框架连接mongodb数据库的代码