Skip to content

Instantly share code, notes, and snippets.

@qianlifeng
Last active August 29, 2015 14:24
Show Gist options
  • Save qianlifeng/b0e35a4be2eeee4101b9 to your computer and use it in GitHub Desktop.
Save qianlifeng/b0e35a4be2eeee4101b9 to your computer and use it in GitHub Desktop.
共享文件夹给所有用户
#用例:某个目录是git目录,大家都需要向此目录提交commit
#新建用户组
groupadd git
#将用户加入用户组
sudo usermod -a -G git lqian
#将要共享的文件夹设置成此用户组
sudo chgrp -R git /var/www
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment