美文网首页
VScode添改Gitbash终端方案

VScode添改Gitbash终端方案

作者: 明训 | 来源:发表于2021-05-16 11:53 被阅读0次

    背景说明

    VScode默认情况下使用powershell,在默写场景下对脚本的支持并不是很好,这里更换gitbash进行替换

    终端=>新终端

    解决方案

    配置文件

    打开VScode软件,找到文件=>首选项=>设置,打开设置,在搜索框中输入terminal.integrated.shell.windows在用户标签页面里面的下面有一个在settings.json中编辑,此时VScode打开了文件,可以进行编辑。

    文件路径C:\Users\86183\AppData\Roaming\Code\User\settings.json

    编辑配置

    settings.json原始配置文件如下

    {
        "iceworks.materialSources": [],
        "iceworks.workspace": "d:\\workspace\\VSCode",
        "extensions.ignoreRecommendations": true,
        "workbench.iconTheme": "vscode-icons",
        "guides.enabled": false,
        "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
    }
    

    编辑后的配置文件如下

    {
        "iceworks.materialSources": [],
        "iceworks.workspace": "d:\\workspace\\VSCode",
        "extensions.ignoreRecommendations": true,
        "workbench.iconTheme": "vscode-icons",
        "guides.enabled": false,
        "terminal.integrated.shell.windows": "D:\\soft\\install\\Git\\bin\\bash.exe"
    }
    

    这里配置git安装目录的bash.exe的绝对路径

    重启软件

    关闭VScode软件并重新打开,按ctrl+shift+`` `键打开终端,看是否生效

    86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
    $
    

    终端切换

    可以通过cmd命令和bash命令对终端进行切换

    86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
    $ cmd
    Microsoft Windows [版本 10.0.19042.928]
    (c) Microsoft Corporation。保留所有权利。
    D:\workspace\VSCode\scriptx-front>bash   
    86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
    $
    
    1. 输入cmd回到系统终端

    2. 再次输入bash跳到git终端

    相关文章

      网友评论

          本文标题:VScode添改Gitbash终端方案

          本文链接:https://www.haomeiwen.com/subject/bloljltx.html