Git系列一之安装管理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git系列一之安装管理相关的知识,希望对你有一定的参考价值。
1.Git安装部署
Git是分布式的版本控制系统,我们只要有了一个原始Git版本仓库,就可以让其他主机克隆走这个原始版本仓库,从而使得一个Git版本仓库可以被同时分布到不同的主机之上,并且每台主机的版本库都是一样的,没有主次之分,极大的保证了数据安全性,并使得用户能够自主选择向那个Git服务器推送文件了,其实部署一个git服务器是非常简单的。
1.安装Git
[[email protected] ~]# yum install git -y
2.配置git全局用户以及邮箱
[[email protected] ~]# git config --global user.name "sundandan" [[email protected] ~]# git config --global user.email "[email protected]" [[email protected] ~]# git config --list user.name=sundandan [email protected] [[email protected] ~]# git config --global color.ui true
3.检查git相关配置
[[email protected] ~]# git config --list user.name=sundandan [email protected] color.ui=true
本文出自 “10732668” 博客,请务必保留此出处http://10742668.blog.51cto.com/10732668/1906394
以上是关于Git系列一之安装管理的主要内容,如果未能解决你的问题,请参考以下文章