1. Create directory to host new repository
$ sudo mkdir /testrepo12. Change group of repository directory to group used by developers that will be using this repository
$ sudo chgrp -R git /testrepo13. Change default permissions on directory so that all new files will be crated with the new group
$ sudo chmod g+rws /testrepo14. Initialize empty Git repository
$ sudo git --base /testrepo1
$ cd /testrepo1
$ git --bare init --shared=group