gitolite/example.gitolite.rc

21 lines
576 B
Plaintext
Raw Normal View History

# this is meant to be pulled into a perl program using "do"
# base directory for all the repos
$REPO_BASE="repositories";
2009-08-26 02:47:27 +02:00
# gitolite admin directory, files, etc
$GL_ADMINDIR=$ENV{HOME} . "/.gitolite";
# --------------------------------------
# the ones below can be left as they are, unless for some reason you want them
# elsewhere
2009-08-26 02:47:27 +02:00
$GL_CONF="$GL_ADMINDIR/gitolite.conf";
$GL_KEYDIR="$GL_ADMINDIR/keydir";
2009-08-26 02:47:27 +02:00
$GL_CONF_COMPILED="$GL_ADMINDIR/gitolite.conf-compiled.pm";
# --------------------------------------
# this should be the last line in this file, per perl rules
1;