centos git服务器搭建配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos git服务器搭建配置相关的知识,希望对你有一定的参考价值。

安装git
$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel $ yum install git

创建用户
$ groupadd git
$ adduser git -g git

设置权限
$ cd /home/git/
$ mkdir .ssh
$ chmod 700 .ssh
$ touch .ssh/authorized_keys
$ chmod 600 .ssh/authorized_keys

$ cd /home
$ mkdir gitrepo
$ chown git:git gitrepo/
$ cd gitrepo

$ git init --bare hello.git
Initialized empty Git repository in /home/gitrepo/hello.git/

$ chown -R git:git hello.git

$ git clone [email protected].168.0.218:/home/gitrepo/hello.git

 
配置ssh免密码登录
/etc/ssh/sshd_config
  找到以下内容,并去掉注释符”#“
  RSAAuthentication yes
  PubkeyAuthentication yes
  AuthorizedKeysFile      .ssh/authorized_keys
重启ssh
 
ssh-keygen -t rsa
把公钥放到服务器中
~/.ssh/authorized_keys  

 
















以上是关于centos git服务器搭建配置的主要内容,如果未能解决你的问题,请参考以下文章

在CentOS 7中搭建Git服务器

CentOS搭建Git服务器及权限管理

centos7使用Gogs搭建Git服务器

centos7下git服务器端搭建

centOS7.2下 搭建gitlab使用git为团队管理代码

centos 下git服务器搭建