share git rep access on unix machine with ssh
Posted
by
Daniel
on Super User
See other posts from Super User
or by Daniel
Published on 2011-02-22T22:32:00Z
Indexed on
2011/02/22
23:27 UTC
Read the original article
Hit count: 231
at my school we have a student unix server with our accounts.
i have installed git on my account, created a repository, and created the acl permissions on the folder repository so other users can access the repository
# file: tp1
# owner: my_account
# group: groupxxx
user::rwx
user:friend_account:rwx
group::---
mask::rwx
other::---
default:user::rwx
default:user:friend_account:rwx
default:group::---
default:mask::rwx
default:other::---
but friend_account cant even cd to my tp1 directory (permission denied), so i think the problem should be in unix acl permissions..
© Super User or respective owner