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

centos git 服务器搭建

时间:2016-09-14 18:41:54      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

1.安装git

sudo yum -y install git

2.创建用户与授权

# 找到 git_shell 
whereis git_shell

/usr/bin/git-shell 

# 创建 git 用户
adduser -d /var/git -s /usr/bin/git-shell git_*
passwd git_*

3.git 使用

cd /var/git

# 创建git仓库
git init --bare ***.git

# 授权
chmod -R 777 ***.git

 

centos git 服务器搭建

标签:

原文地址:http://www.cnblogs.com/objecttozero/p/centos_git.html

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