Git, How to change a bare to a shared repo?
Since the –shared option just sets the permissions on everything in the repository to group-writable you could do this manually later: $ chmod -R g+w the/repo/path Plus, add sharedrepository = 1 under the [core] section in .git/config. Shared repos also have the following receive option defined by default (which you may or may not want): … Read more