I recently installed gitolite on my linux server.
This server is my git remote server with some bare repositories located on a separate path. lets say
/images/git_bare_repos
By default gitolite is installed on git user in home directory. I am able to clone gitolite-admin repository from the root user on the same machine. That is gitolite is working fine.
>>>ls /home/git
bin gitolite projects.list repositories root.pub
all the new repositories are created in repositories directory:
>>>ls /home/git/repositories/
gitolite-admin.git testing.git
My question is:
I want gitolite to create new repositories on the same path where all my other bare repositories rest. Ie. in /images/git_bare_repos
I tried adding:
GL_REPO_BASE => "/images/git_bare_repos",
in .gitconfig.rc
file but with no luck.