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