欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Windows Terminal 配置GIT

程序员文章站 2022-07-05 17:14:27
...

Windows Terminal 配置GIT

一、打开设置

Windows Terminal 配置GIT

找到该位置

Windows Terminal 配置GIT

json串中添加以下代码

{
   "acrylicOpacity": 0, // 透明度
     "closeOnExit": true, // 关闭的时候退出命令终端
     "colorScheme": "Campbell", // 样式配置
     "commandline": "F:\\software_Anzhuang\\Git\\bin\\bash.exe", // git-bash的命令行所在位置
     "cursorColor": "#FFFFFF", // 光标颜色
     "cursorShape": "bar", // 光标形状
     "fontFace": "YaHei Consolas Hybrid", // 字体配置,选择你电脑上已安装的字体
     "fontSize": 14, // 终端字体大小
     "guid": "{1c4de342-38b7-51cf-b940-2309a097f589}", // 唯一的标识,改成和其他的已有终端不一样
     "historySize": 9001, // 终端窗口记忆大小
     "icon": "F:\\software_Anzhuang\\Git\\mingw64\\share\\git\\git-for-windows.ico", // git的图标
     "name": "git-bash", // 标签栏的标题显示
     "padding": "0, 0, 0, 0", // 边距
     "snapOnInput": true,
     "startingDirectory": "%USERPROFILE%", // gitbash 启动的位置(默认在C盘的用户里面的就是 ~ )
     "useAcrylic": false // 是否开启透明度
 }

转载出处:https://www.cnblogs.com/linchenjian/p/12573129.html