如何配置要由UNIX组共享的现有git repo

前端之家收集整理的这篇文章主要介绍了如何配置要由UNIX组共享的现有git repo前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个现有的git repo(一个裸的),到目前为止只有我可写。我想打开它到一些UNIX用户组,foo,所以foo的所有成员可以推送到它。我知道,我可以轻松地设置一个新的git repo:
git init --bare --shared=group repodir
chgrp -R foo repodir

但我需要一个现有的repo dir的等效操作。

尝试此操作以使群组foo中的用户在repodir中使用现有存储库:
chgrp -R foo repodir                 # set the group
chmod -R g+rw repodir                # allow the group to read/write
chmod g+s `find repodir -type d`     # new files get group id of directory
git init --bare --shared=all repodir # sets some important variables in repodir/config ("core.sharedRepository=2" and "receive.denyNonFastforwards=true")
原文链接:https://www.f2er.com/bash/392163.html

猜你在找的Bash相关文章