CentOS 8 安装Git及基本配置

1、安装:

  1. yum install git

根据提示,键入 y 确认开始安装。

2、验证安装:查看版本

  1. git --version

可以看到版本信息,证明安装成功。

  1. [root@centos ~]# git --version
  2. git version 2.18.4
  3. [root@centos ~]#

3、配置用户信息:

  1. git config --global user.name "Deshun"
  2. git config --global user.email deshun@w3h5.com

4、查看配置信息:

  1. git config --list

可以看到用户信息,用户说明配置成功。

  1. [root@centos ~]# git config --list
  2. user.name=Deshun
  3. user.email=deshun@w3h5.com
  4. [root@centos ~]#


未经允许不得转载:前端资源网 - w3h5 » CentOS 8 安装Git及基本配置

赞 (0)
分享到: +

评论 沙发

Avatar

换个身份

  • 昵称 (必填)
  • 邮箱 (选填)