Gitosis
Gitosis is a tool which provides access control and remote management for hosted Git repositories. It allows for fine-grained management of read and write access over SSH, without requiring that the users have local system accounts on the server. To do this, it sets up a single system account "git
" which is then used for all Git access.
Gitosis provides installation instructions in its README file. This guide is based on those instructions.
Installation and setup[edit | edit source]
Install the gitosis-git package from the AUR. This will create three things:
- the
git
user - the
git
group to which this user belongs - the
/srv/gitosis
directory, which will hold data and repositories for Gitosis
To configure Gitosis, you do not edit files directly on the server. Instead, Gitosis provides a Git repository which contains the configuration. To update this configuration, you clone, commit, and push to gitosis-admin
just as you would any other repository.
Since Gitosis uses SSH keys to authenticate users, you will need to generate a keypair to use for the admin repository. If you don't have one, you can generate it using ssh-keygen
, e.g.:
$ ssh-keygen -t rsa
You can now initialize the admin repository.
$ sudo -H -u git gitosis-init < /path/to/public_key.pub Initialized empty Git repository in /srv/gitosis/repositories/gitosis-admin.git/ Reinitialized existing Git repository in /srv/gitosis/repositories/gitosis-admin.git/
In addition, this command creates the directory /srv/gitosis/repositories
in which the actual hosted repositories will be stored.
Configuration[edit | edit source]
As mentioned above, Gitosis is configured by pushing commits to the gitosis-admin
repository. To clone this repository (using Gitosis!), run:
$ git clone [email protected]:gitosis-admin.git
Inside the gitosis-admin
repository, you will see two things:
gitosis.conf
– configuration file for Gitosis and repository permissionskeydir
– directory containing public keys for each user
To modify repositories or users, or to configure Gitosis, just commit changes in your clone and push them back to the server.
Repositories and permissions[edit | edit source]
You'll be able to find some example configuration files in /usr/share/doc/gitosis.
[gitosis] gitweb = yes [repo foobar] description = git repository for foobar owner = user [group devs] members = user1 user2 [group admins] members = user1 [group gitosis-admin] writable = gitosis-admin members = @admins [group foobar] writable = foobar members = @devs [group myteam] writable = free_monkey members = jdoe
This defines a new group called "free_monkey", which is an arbitrary string. "jdoe" is a member of myteam and will have write access to the "gitosis" repo.
Save this addition to gitosis.conf, commit and push it:
$ git commit -a -m "Allow jdoe write access to free_monkey" $ git push
Now the user "jdoe" has access to write to the repo named "free_monkey", but we still haven't created a repo yet. What we will do is create a new repo locally, initialize it on the git server, and then push it:
$ mkdir free_monkey $ cd free_monkey $ git init $ git remote add origin git@YOUR_SERVER_HOSTNAME:free_monkey.git
Do some work, git add and commit files
$ git push origin master:refs/heads/master
When using ssh, the last command will fail with the error message "does not appear to be a git repository" This can be fixed by initializing the repository manually on the server
$ git init --bare /srv/gitosis/repositories/free_monkey.git
and retry the last command
With the final push, you're off to the races. The repository "free_monkey" has been created on the server (in /srv/gitosis/repositories) and you're ready to start using it like any ol' git repo.
gitosis repositories can also be used with gitweb; just point the directory that contains the repository inside the gitweb configuration.
Adding users[edit | edit source]
The next natural thing to do is to grant some lucky few commit access to the FreeMonkey project. This is a simple two step process.
First, gather their public SSH keys, which I'll call "alice.pub" and "bob.pub", and drop them into keydir/ of your local gitosis-admin repository. Second, edit gitosis.conf and add them to the "members" list.
$ cd gitosis-admin $ cp ~/alice.pub keydir/ $ cp ~/bob.pub keydir/ $ git add keydir/alice.pub keydir/bob.pub
Note that the key filename must have a ".pub" extension.
gitosis.conf changes:
[group myteam] members = jdoe alice bob writable = free_monkey
Commit and push:
$ git commit -a -m "Granted Alice and Bob commit rights to FreeMonkey" $ git push
That's it. Alice and Bob can now clone the free_monkey repository like so:
$ git clone git@YOUR_SERVER_HOSTNAME:free_monkey.git
Alice and Bob will also have commit rights.
Public access[edit | edit source]
If you are running a public project, you will have your users with commit rights, and then you'll have everyone else. How do we give everyone else read-only access without fiddling w/ SSH keys?
We just use git-daemon. This is independent of gitosis and it comes with git itself.
$ sudo -u git git-daemon --base-path=/srv/gitosis/repositories/ --export-all
This will make all the repositories you manage with gitosis read-only for the public. Someone can then clone FreeMonkey like so:
$ git clone git://YOUR_SERVER_HOSTNAME/free_monkey.git
To export only some repositories and not others, you need to touch git-daemon-export-ok inside the root directory (e.g. /srv/gitosis/repositories/free_monkey.git) of each repo that you want public. Then remove "--export-all" from the git-daemon command above.
More tricks[edit | edit source]
gitosis.conf can be set to do some other neat tricks. Open example.conf in the gitosis source directory (where you originally cloned gitosis way at the top) to see a summary of all options. You can specify some repos to be read-only (opposite of writable), but yet not public. A group members list can include another group. And a few other tricks that I'll leave it to the reader to discover. Caveats
If /srv/gitosis/.gitosis.conf on your server never seems to get updated to match your local copy (they should match), even though you are making changes and pushing, it could be that your post-update hook isn't executable. Older versions of setuptools can cause this. Be sure to fix that:
$ sudo chmod 755 /srv/gitosis/repositories/gitosis-admin.git/hooks/post-update
If your Python goodies are in a non-standard location, you must additionally edit post-update and put an "export PYTHONPATH=..." line at the top. Failure to do so will give you a Python stack trace the first time you try to push changes within gitosis-admin.
If you want to install gitosis in a non-standard location, I do not recommend it. It's an edge case that the author hasn't run up against until I bugged him to help me get it working.
For the brave, you need to edit whatever file on your system controls the default PATH for a non-login, non-interactive shell. On Ubuntu this is /etc/environment. Add the path to gitosis-serve to the PATH line. Also insert a line for PYTHONPATH and set it to your non-standard Python site-packages directory. As an example, this is my /etc/environment:
$ PATH="/home/$(whoami)/sys/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games" $ PYTHONPATH=/home/$(whoami)/sys/lib/python2.4/site-packages
Be sure to logout and log back in after you make these changes.
Don't use the gitosis-init line I have above for the standard install, instead use this slightly modified one:
$ sudo -H -u git env PATH=$PATH gitosis-init < /tmp/id_rsa.pub
Be sure to also set PYTHONPATH in your post-update hook as described above.
The *should* do it. I am purposefully terse with this non-standard setup as I think not many people will use it. HIt me up in #git on FreeNode if you need more info (my nick is up_the_irons).
Non-standard SSH port[edit | edit source]
If you run SSH on a non-standard port on your server, there are two ways of specifying on which port git will try to connect. One is to explicitly state that you are using the ssh protocol, as this lets you put in a port number in the url too:
git clone ssh://[email protected]:1234/repo.git
Or you can put this in your ~/.ssh/config file:
$ Host myserver.com $ Port 1234
- [repo] blocks are used to define some necessary areas being used with gitweb.
- [group] blocks are used for both:
- defining user groups
- defining repository permissions
- @ is used to define user groups.
You should commit and push any changes you do in this file.
keydir[edit | edit source]
keydir is simply a directory that contains public keys of the users. Some of the keys can be in the form of user@machine and those keys must be defined with that form inside gitosis.conf. It's better to create user groups and use them as members of the repositories. Once you add new keys to enable some new users, you should add the files to the git repository and commit & push them. The new users will use the above form of git commands like you've used to clone the gitosis-admin repository.
Related links[edit | edit source]
- Gitosis source
- Gitolite – an alternative to Gitosis which provides many similar features
- Girocco – Git hosting code used on repo.or.cz
- Gitorious – open-source Git hosting