Git 服务器搭建
Centos为例搭建Git服务器作为私有仓库使用。本文仅为个人实践总结。
本文参考来源:https://www.runoob.com/git/git-server.html
1、安装Git
$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel
$ yum install git
接下来我们 创建一个git用户组和用户,用来运行git服务
$ groupadd git
$ useradd git -g git
2、创建证书登录
切换到git用户,创建ssh密钥,公钥位于id_rsa.pub中,把公钥导入到"/home/git/.ssh/authorized_keys"文件里,一行一个。
$ su git
$ cd /home/git/
$ mkdir .ssh
$ chmod 755 .ssh
$ ssh-keygen -o -t rsa -b 4096 -C "git@example.com"
# 或者 ssh-keygen -o rsa -C "git@example.com"
$ touch .ssh/authorized_keys
$ chmod 644 .ssh/authorized_keys
$ vim id_rsa.pub #拷贝公钥
$ vim authorized_keys #粘贴公钥
如果其他用户,同样类似操作。
3、初始化Git仓库
首先我们选定一个目录作为Git仓库,假定是/home/gitrepo/test.git,在/home/gitrepo目录下输入命令:
$ cd /home
$ mkdir gitrepo
$ chown git:git gitrepo/
$ cd gitrepo
$ git init --bare test.git
Initialized empty Git repository in /home/gitrepo/test.git/
以上命令Git创建一个空仓库,服务器上的Git仓库通常都以.git结尾。然后,把仓库所属用户改为git:
$ chown -R git:git test.git
4、克隆仓库
$ git clone git@192.168.35.12:/home/gitrepo/test.git
Cloning into 'test'...
warning: You appear to have cloned an empty repository.
Checking connectivity... done.
192.168.35.12为Git所在服务器ip,这样Git服务器安装完成。