1.安装
yum intall git
2.查看版本
[root@localhost ~]# git --version
git version 1.8.3.1
3.配置全局用户
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
4.这样配置了以后,发现每次拉取项目都要输入用户名和密码,所有搜索了一下,可以安装进行解决
yum install git-credential-libsecret
git config --global credential.helper cache
这样配置完成以后只要输入一次密码后面就不用再次输入了