1、安装:
- yum install git
根据提示,键入 y 确认开始安装。
2、验证安装:查看版本
- git --version
可以看到版本信息,证明安装成功。
- [root@centos ~]# git --version
- git version 2.18.4
- [root@centos ~]#
3、配置用户信息:
- git config --global user.name "Deshun"
- git config --global user.email deshun@w3h5.com
4、查看配置信息:
- git config --list
可以看到用户信息,用户说明配置成功。
- [root@centos ~]# git config --list
- user.name=Deshun
- user.email=deshun@w3h5.com
- [root@centos ~]#
未经允许不得转载:前端资源网 - w3h5 » CentOS 8 安装Git及基本配置