On Fri, Jun 12, 2009 at 03:54:08PM +0200, Dirk Süsserott wrote:
quoted
Also, in general, how can it be set up, that >1 people have a write
access to the same repository? Only by using the same login?
Have a look at the "--shared" option of "git init". That's supposed to
I have also had good experiences with POSIX ACLs for sharing
repositories:
setfacl -R -m d:u:$user:rwX -m u:$user:rwX /path/to/repo
which gets rid of dealing with group management. Of course your
filesystem has to support them. :)
-Peff