How can I configure gitosis (via the gitosis.conf
file) to enable a particular user to create, clone or modify any arbitrary repository? That includes repos that do not yet exist?
I know you can add a user to have write privelages to specific repositories, but is this possible with all arbitrary repositories?
Something like this:
[group write-all]
members = richard
writable = all
I looked online everywhere, could not find a solution. My goal is to be able to just initialize new repos and push them to the server without touching the config file, so long as I am authenticated by my public key. Thank you!