GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)

1.GIT安装

1.1 运行安装程序

下载地址:https://git-scm.com/download/win

在这里插入图片描述

1.2 安装设置

  • step1:安装需知,点击下一步

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第1张图片

  • step2:选择安装位置

自主选择即可,不系统盘优先

  • step3:基础设置,自主按需选择即可。由于博主需求是在Windows terminal 中直接使用git bash 所以勾选了这个最新选项。

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第2张图片

  • step4:开始菜单创建快捷方式与否

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第3张图片

  • step5:选择在git中使用的编辑器,按需选择即可。博主选择vim。

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第4张图片

  • step6:选择git init 命令后分支的初始命名,个人默认让git 选择即可。

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第5张图片

  • step7:添加环境,以及选择使用git的命令行工具。博主需要直接在Windows terminal中使用,选择第二项。

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第6张图片

  • step8:默认使用git的openssh

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第7张图片

  • step9:默认使用即可

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第8张图片

  • step10:默认使用即可

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第9张图片

  • step11:选择想在Git Bash中使用哪个终端模拟器,默认即可

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第10张图片

  • step12:默认使用即可

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第11张图片

  • step13:默认使用即可

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第12张图片

  • step14:默认使用即可

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第13张图片

  • step15:有bug,那就先不选

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第14张图片

  • step16:等待安装,完成

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第15张图片

  1. Window terminal 设置
  • 由于之前的选择,以及有了默认的配置

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第16张图片

  • 也可以进行更多自主配置,在Window terminal设置中打开
image-20220113102721812
  • 下滑找看看"name": “Git Bash”

    可进行配置

            {
                //默认配置
                "guid": "{2ece5bfe-50ed-5f3a-ab87-5cd4baafed2b}",//唯一的标识,不和其他命令行终端的标识符重复即可。
                "name": "Git Bash",        //命名
                "source": "Git",           
                //其他配置
                "padding": "0, 0, 0, 0",  // 边距
                "snapOnInput" : true,     //是否开启透明度
                "acrylicOpacity": 0.6,    // 透明度          
                "closeOnExit": true,      // 关闭的时候退出命令终端
                "startingDirectory" : "%USERPROFILE%",// gitbash的启动的位置,%USERPROFILE%表示默认打开用户目录
                "useAcrylic" : true       //透明效果
            }

更多可参考:

https://blog.walterlv.com/post/add-a-new-profile-for-windows-terminal.html

  • 可以把打开Windows terminal 的页面设置为git

找到 defaultProfile ,标识设置为git的,注意标识一定选择自己本地电脑的

"defaultProfile": "{2ece5bfe-50ed-5f3a-ab87-5cd4baafed2b}",//使用git标识,默认打开git

3.效果

GIT 2.34.1安装及在windows terminal 中使用之保姆教程 (2022年实测)_第17张图片

背后是桌面。

2022.01.13 by mustvvvics

你可能感兴趣的:(git,windows,github)