系统环境
CentOS7
1、安装Git
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel //安装依赖
yum install git //安装Git 也可以直接运行yum intall git yum会自动安装软件依赖
2、创建一个git用户组和用户
groupadd git //创建git用户组
useradd git -g git //创建git用户,用来运行git服务
3、创建证书登录
收集所有需要登录的用户的公钥,公钥位于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
4、初始化Git仓库
首先我们选定一个目录作为Git仓库,假定是/home/gitrepo/runoob.git,在/home/gitrepo目录下输入命令:
$ cd /home
$ mkdir gitrepo
$ chown git:git gitrepo/
$ cd gitrepo
$ git init --bare runoob.git
Initialized empty Git repository in /home/gitrepo/runoob.git/
$ chown -R git:git runoob.git //把仓库所属用户改为git
5、克隆仓库
$ git clone git@192.168.45.4:/home/gitrepo/runoob.git //92.168.45.4 为 Git 所在服务器 ip ,你需要将其修改为你自己的 Git 服务 ip
Cloning into 'runoob'...
warning: You appear to have cloned an empty repository.
Checking connectivity... done.
这样我们的 Git 服务器安装就完成。
Windows
只需要将服务端的Git仓库文件夹共享出来就可以了
网友评论