CentOS 7 安装配置git

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 [email protected]
//查看配置
[root@localhost ~]# git config --list
user.name=manhengwei
[email protected]
[root@localhost ~]#

你可能感兴趣的:(git)