我有一个现有的git repo(一个裸的),到目前为止只有我可写。我想打开它到一些UNIX用户组,foo,所以foo的所有成员可以推送到它。我知道,我可以轻松地设置一个新的git repo:
git init --bare --shared=group repodir chgrp -R foo repodir
但我需要一个现有的repo dir的等效操作。
尝试此操作以使群组foo中的用户在repodir中使用现有存储库:
原文链接:https://www.f2er.com/bash/392163.htmlchgrp -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")