Skip to content

Instantly share code, notes, and snippets.

@kabili207
Created April 4, 2019 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kabili207/4d52c706de99c63793f904daa1fd4428 to your computer and use it in GitHub Desktop.
Save kabili207/4d52c706de99c63793f904daa1fd4428 to your computer and use it in GitHub Desktop.
Initializing git repo as group writable
git init --shared=0665 scripts
cd scripts
chgrp linux_admins .
setfacl -R -m g:linux_admins:rwX .
find . -type d | xargs setfacl -R -m d:g:linux_admins:rwX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment