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

git - 搭建git仓库

时间:2014-06-28 18:16:41      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:blog   http   文件   os   name   代码   

1. 更新git版本: http://codelife.me/blog/2013/06/25/upgrade-git-on-centos-6-4/

 

2. 建立git仓库:

  • git init --bare myrepo.git    # 建立代码仓库
  • chgrp  -R git /opt/myrepo.git     # 更改属组
  • chmod g+rsw -R /opt/myrepo.git    # 给组 读写权限
  • #每次有人push后,设置 新文件的属组是 新属组git,
  • echo “#!/bin/sh\n chgrp -R git . 2>/dev/null” > /opt/myrepo.git/hooks/post-update
  • chmod g+x /opt/myrepo.git
  • # 组共享代码
  • cd /opt/myrepo.git
  • git config –add core.sharedRepositoy group
  • # checkout 代码
  • git clone user_name@vps_host:/opt/myrepo.git  myrepo.git

 

 

 

git - 搭建git仓库,布布扣,bubuko.com

git - 搭建git仓库

标签:blog   http   文件   os   name   代码   

原文地址:http://www.cnblogs.com/kevin922/p/3796563.html

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