1:安装
yum install git
2:验证
[root@localhost ~]# git --version
git version 1.8.3.1
[root@localhost ~]#
3:配置
//配置基本信息
[root@localhost ~]# git config --global user.name "name"
[root@localhost ~]# git config --global user.email xxxxxx@qq.com
//查看配置
[root@localhost ~]# git config --list
user.name=manhengwei
user.email=617812969@qq.com
[root@localhost ~]#
本文详细介绍了如何在Linux环境下安装Git版本控制系统,并通过实例演示了如何验证安装版本及配置个人基本信息。
8197

被折叠的 条评论
为什么被折叠?



