Git 远程仓库搭建

Posted liang-yao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 远程仓库搭建相关的知识,希望对你有一定的参考价值。

  1. 安装git:

yum install -y git

 

  1. 创建git用户

useradd git

passwd git

 

创建完用户后就可以切换到git用户下进行后面的设置,如用户名和邮箱:

su - git

git config --global user.name "admin"

git config --global user.email "[email protected]"

设置默认将会保存在~/.gitconfig文件中。

 

 

  1. 创建证书登录:

收集所有需要登录的用户的公钥id_rsa.pub,把所有公钥导入/home/git/.ssh/authorized_keys文件

ssh-keygen -t rsa

ssh-copy-id git@192.168.200.108

 

  1. 初始化Git仓库:

先选定一个目录作为Git仓库

cd /home/git/

git init --bare sample.git

 

  1. 禁用shell登录:

创建的git用户不允许登录shell

vim /etc/passwd

git:x:1000:1000::/home/git:/usr/bin/git-shell

 

  1. 克隆远程仓库:

git clone git@192.168.200.108:/home/git/sample.git

以上是关于Git 远程仓库搭建的主要内容,如果未能解决你的问题,请参考以下文章

git创建远程仓库

怎么在gitlab上面创建远程仓库

git远程仓库操作

linux上搭建git服务器之3(git远程仓库)

Git系列四之在本地服务器搭建gitlab仓库管理(centeros环境下)

linux下git远程仓库的搭建