github是一个免费托管开源代码的git服务器,如果我们不想公开项目的源代码,又不想付费使用,那么我们可以自己搭建一台git服务器。首先你需要一台client和一台server。client可以是windows系统,利用git bash或者cywin类似的软件来执行指令,也可以是ubuntu等linux系统,server可以是本地搭建的服务器,也可以是云服务器。
在服务器上搭建git服务,那就需要有一台linux的服务器,通过几条简单的apt命令就可以完成安装。
接下来我们将以 centos 为例搭建 git 服务器。
安装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
创建证书登录
收集所有需要登录的用户的公钥,公钥位于id_rsa.pub文件中,把我们的公钥导入到/home/git/.ssh/authorized_keys文件里,一行一个。
如果没有该文件创建它:
$ cd /home/git/
$ mkdir .ssh
$ chmod 755 .ssh
$ touch .ssh/authorized_keys
$ chmod 644 .ssh/authorized_keys
初始化git仓库
首先我们选定一个目录作为git仓库,假定是/home/gitrepo/coonote.git,在/home/gitrepo目录下输入命令:
$ cd /home
$ mkdir gitrepo
$ chown git:git gitrepo/
$ cd gitrepo
$ git init --bare coonote.git
initialized empty git repository in /home/gitrepo/coonote.git/
以上命令git创建一个空仓库,服务器上的git仓库通常都以.git结尾。然后,把仓库所属用户改为git
$ chown -r git:git coonote.git
克隆仓库
$ git clone [email protected]:/home/gitrepo/coonote.git
cloning into 'coonote'...
warning: you appear to have cloned an empty repository.
checking connectivity... done.
192.168.11.12 为 git 所在服务器 ip ,你需要将其修改为你自己的 git 服务 ip。
这样我们的 git github服务器安装就完成。