I have a directory /applications which is owned by root and group git.

The problem is when I create a new directory inside /applications, its owned by root and group root, not group git. How do I make new directories inside /applications inherit the group git instead of root?

link|improve this question

48% accept rate
feedback

1 Answer

You have to enable setgid on it:

chmod g+s /applications

From that point all the files and directories will be owned by group git

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.