1.Git安装部署

Git是分布式的版本控制系统,我们只要有了一个原始Git版本仓库,就可以让其他主机克隆走这个原始版本仓库,从而使得一个Git版本仓库可以被同时分布到不同的主机之上,并且每台主机的版本库都是一样的,没有主次之分,极大的保证了数据安全性,并使得用户能够自主选择向那个Git服务器推送文件了,其实部署一个git服务器是非常简单的。

1.安装Git

[root@linux-node1 ~]# yum install git -y

2.配置git全局用户以及邮箱

[root@linux-node1 ~]# git config --global user.name "sundandan"
[root@linux-node1 ~]# git config --global user.email "[email protected]"
[root@linux-node1 ~]# git config --list
user.name=sundandan
[email protected]
[root@linux-node1 ~]# git config --global color.ui true

3.检查git相关配置

[root@linux-node1 ~]# git config --list
user.name=sundandan
[email protected]
color.ui=true