1.Ctrl + Shift + P: 调出命令输入框 2. 输入Terminal: Select Default Shell 3. 输入要使用的 shell 或者选择也可,例如: 在C:\Users\wyp\AppData\Roaming\Code\User\settings.json文件里,设置 -l 参数,需要配置环境变量Path的值为bash所在的路径,-l表示登录,可以获取环境变量信息。 "terminal.integrated.sh...
{ "terminal.integrated.profiles.windows": { "PowerShell -NoProfile": { "source": "PowerShell", "args": [ "-NoProfile" ] }, "Git-Bash": { "path": "D:\\tools\\Git\\bin\\bash.exe", "args": [] } }, "terminal.integrated.defaultProfile.windows": "Git Bash", } 点击vscode 上...
进入终端设置 配置shell路径 根据自己的系统来复制对应的配置文件,并在settings.json编辑 新版本 !> 新版本发生了一些变更, 请注意 代码语言:javascript 复制 "terminal.integrated.shellIntegration.history":99999,"terminal.integrated.shellIntegration.enabled":true,"terminal.integrated.defaultProfile.windows":"bash",...
1. 新版配置如下: "terminal.integrated.profiles.windows": { "Git-Bash": { "path": "D:\\program files\\Git\\bin\\bash.exe", "args": [], "icon": "terminal-bash" }, }, "terminal.integrated.defaultProfile.windows": "Git-Bash" 1. 2. 3. 4. 5. 6. 7. 8. 使用...
有了Git Bash之后,下一步就是在VSCode中配置和使用Bash终端。 设置默认终端为Bash 打开VSCode,通过快捷键Ctrl + ,打开设置,搜索“terminal.integrated.defaultProfile.windows”,然后从下拉菜单中选择“Git Bash”作为默认终端。这个设置将使得每次你在VSCode中打开终端时,默认启用的是Bash终端。
打开用户设置,搜索配置项terminal.integrated.shell.windows,将会看到它默认显示为C:\Windows\Sysnative\cmd.exe 我们可以设置为git bash的路径,默认为C:\Program Files\Git\git-bash.exe,这样就可以切换成功了 当然了,如果是win10系统的话,是可以内置支持bash的,默认路径为C:\Windows\System32\bash.exe ...
在设置的面板搜索框中搜索shell windows,找到Terminal > Integrated > Default Profile :Windows这里选择切换终端为Git Bash。 image.png 方式三 快捷操作修改默认终端 保障vscode底部终端是打开的(快捷键ctrl+`),点击终端区域右上角的下拉图标按钮,点击选择默认配置文件,最上方快捷命令口选择Git Bash,重启vscode默认终端...
修改配置文件,将下面的配置加到 setting.json文件 "terminal.integrated.profiles.windows": { "PowerShell -NoProfile": { "source": "PowerShell", "args": [ "-NoProfile" ] }, "Git-Bash": { "path": "D:\\Program Files\\Git\\bin\\bash.exe", ...
在VScode中,默认的终端通常是PowerShell或命令提示符。然而,有时我们可能更希望使用Git Bash作为我们的默认终端,因为它提供了许多在Windows命令行环境中无法找到的功能。以下是在VScode 1.60.0中将默认终端设置为Git Bash的步骤。步骤1:安装Git Bash首先,确保您已经在Windows系统上安装了Git Bash。如果还没有安装,您可...
总结俩种方式,方式2个人觉得更方便, 方式1: # 1. 首先打开【设置】 # 2. 在【设置】的面板搜索框中搜索【shell windows】,找到【Terminal > ...