码迷,mamicode.com
首页 > 其他好文 > 详细

在服务器上搭建git仓库

时间:2018-06-16 11:47:26      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:home   管理   服务器   dir   用户   use   scm   clone   add   

文档

管理全部用户的公匙

/tmp/id_rsa.ajanuw.pub  // 这里全部放在 /tmp目录下

在服务器上创建一个名叫 git 的用户

adduser git // 一路回车
passwd git // 设置密码
su git // 切换到git用户
mkdir .ssh && chmod 700 .ssh  // 在git的根目录创建 .ssh文件
touch .ssh/authorized_keys && chmod 600 .ssh/authorized_keys  // 创建 authorized_keys
cat /tmp/id_rsa.ajanuw.pub >> ~/.ssh/authorized_keys  // 把用户的公匙写进 authorized_keys

创建仓库

mkdir pro.git   // /home/git/pro.git
cd pro.git/
git init --bare

clone 仓库

git clone ssh://git@192.168.32.128:/home/git/pro.git

在服务器上搭建git仓库

标签:home   管理   服务器   dir   用户   use   scm   clone   add   

原文地址:https://www.cnblogs.com/ajanuw/p/9189847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!