git 服务器搭建
- 首先安装 git
sudo apt 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/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:
chown -R git:git test.git
- 本地克隆仓库
需注意这里不能使用 ~
需要使用 /home/
git clone git@192.168.1.0:/home/gitrepo/test.git
Cloning into 'test'...
warning: You appear to have cloned an empty repository.
Checking connectivity... done.