首页 > 代码库 > git - 搭建git仓库
git - 搭建git仓库
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。