Hosting git repositories -- Gitolite allows you to setup git hosting on a central server, with very fine-grained access control and many (many!) more powerful features.
Go to file
Sitaram Chamarty d08aca63ff gl-setup: dont try to 'git add' and all that when no key was provided
Apparently some people want gitolite-admin as a non-repo.  Completely
outside gitolite, managed by puppet or such, and leaving only symlinks
for 'conf' and 'keydir' in $GL_ADMINDIR.

But then when they have to run 'gl-setup', the 'git add' complains about
the symlink.  Hence this patch.

----

Meanwhile, if you're one of those puppet masters, here's the script I
gave them for the *compile* (this has nothing to do with this patch; I'm
just throwing it in here so I won't lose it):

    #!/bin/bash

    # let's say you install using "non-root" method.  (Adjust GL_BINDIR for root
    # method or package method).

    # install normally, then make changes directly in $GL_ADMINDIR/conf and
    # $GL_ADMINDIR/keydir.  (Please leaves "logs/" and "hooks/" alone).

    # Then run this:

    export GL_ADMINDIR=$HOME/.gitolite
    export GL_BINDIR=$HOME/bin
    export GL_RC=$HOME/.gitolite.rc

    cd $GL_ADMINDIR
    $GL_BINDIR/gl-compile-conf

    # BE SURE TO REMOVE THE ADMIN REPO ITSELF FROM conf/gitolite.conf, as well as
    # repositories/gitolite-admin.git, lest a push by someone end up overwriting
    # this hand- (or machine-) crafted config.

    # you can get away even further from gitolite's control.  You can, for
    # example, set GL_NO_SETUP_AUTHKEYS in the rc file, and manage even the keys
    # yourself.  Just put the full path to $GL_BINDIR/gl-auth-command followed by
    # the username in the "command=" part of the authkeys file you generate.
2011-11-29 06:41:10 +05:30
conf some nice ADC changes... (warning: minor backward compat breakage) 2011-10-17 18:42:57 +05:30
contrib (git version change causes change in some output) 2011-11-27 08:43:36 +05:30
doc new functions (can_*, is_admin, in_group) for ADCs 2011-11-22 19:31:41 +05:30
hooks (minor) fix hooklet setup instructions 2011-11-15 14:07:53 +05:30
src gl-setup: dont try to 'git add' and all that when no key was provided 2011-11-29 06:41:10 +05:30
t (git version change causes change in some output) 2011-11-27 08:43:36 +05:30
.gitattributes docs and .gitattributes hadn't been updated for the change in hooks dir 2010-03-10 06:24:53 +05:30
.gitignore add conf/VERSION to .gitignore 2010-03-02 05:39:19 +05:30
Makefile Makefile: now default is as simple as "make" 2010-05-14 11:27:55 +05:30
README.mkd (minor) add link to master TOC in main README 2011-11-13 07:52:45 +05:30

Gitolite README

If you're really impatient, and you're familiar with Unix and ssh, follow the quick install instructions.

But if you want to do anything meaningful with gitolite you have to spend some time cuddling up to the docs. The complete online documentation starts here.

For convenience, here is a link to the master table of contents, which is very useful to search using your browser's search function.