美文网首页
在自己服务器搭建git仓库

在自己服务器搭建git仓库

作者: ambition_wy | 来源:发表于2018-01-16 15:21 被阅读0次

    在网上有很多教程如何搭建。记录一下搭建git仓库的一些理解
    Git 服务器搭建
    我们远程仓库使用了 Github,Github 公开的项目是免费的,但是如果你不想让其他人看到你的项目就需要收费。
    这时我们就需要自己搭建一台Git服务器作为私有仓库使用。
    接下来我们将以 Centos 为例搭建 Git 服务器。

    1、安装Git
    $ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel
    

    确认安装之后,再执行下面的 yum install git 会说已经安装git

    $ yum install git
    

    接下来我们 创建一个git用户组和用户,用来运行git服务:

    $ groupadd git
    $ useradd git -g git
    

    这里可以先为用户git添加一个密码,在克隆仓库的时候需要输入密码

    $ passwd git
    
    
    2、创建证书登录

    收集所有需要登录的用户的公钥,公钥位于id_rsa.pub文件中,把我们的公钥导入到/home/git/.ssh/authorized_keys文件里,一行一个。
    如果没有该文件创建它:

    $ cd /home/git/
    $ mkdir .ssh
    $ chmod 700 .ssh
    $ touch .ssh/authorized_keys
    $ chmod 600 .ssh/authorized_keys
    
    3、初始化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/
    

    以上命令Git创建一个空仓库,服务器上的Git仓库通常都以.git结尾。然后,把仓库所属用户改为git:

    $ chown -R git:git runoob.git
    
    4、克隆仓库
    $ git clone git@192.168.45.4:/home/gitrepo/runoob.git
    Cloning into 'runoob'...
    warning: You appear to have cloned an empty repository.
    Checking connectivity... done.
    
    这里的 '@' 前面的git需要主要,git指的是用户名,如果不是用git创建的用户名需要更改成自己创建的用户名
    例如
    $ git clone test@192.168.45.4:/home/gitrepo/runoob.git
    此段是例子,可以不理
    

    192.168.45.4 为 Git 所在服务器 ip ,你需要将其修改为你自己的 Git 服务 ip。
    这样我们的 Git 服务器安装就完成了,接下来我们可以禁用 git 用户通过shell登录,可以通过编辑/etc/passwd文件完成。找到类似下面的一行:

    git:x:503:503::/home/git:/bin/bash
    

    改为:

    git:x:503:503::/home/git:/sbin/nologin
    

    相关文章

      网友评论

          本文标题:在自己服务器搭建git仓库

          本文链接:https://www.haomeiwen.com/subject/ibvsoxtx.html