Reputation: 2111
I have a gitolit server with the following structure:
/home/user/repository/test.git
/home/user/repository/folder1/a.git
/home/user/repository/folder1/subfolder1/b.git
/home/user/repository/folder2/c.git
This is just an example, there are several folders and subfolders.
When I want to list all the repositories with the command
ssh git@server info
I'm only able to list the repository located in the root folder, that is:
/home/user/repository/test.git
But I can't see all the other ones.
Is there any reason for that?
Upvotes: 2
Views: 204
Reputation: 1329492
As seen in this thread, you should see the list of all repository, so:
gitolite.conf
file has not declared those repos in their subfoldersIf you can access the gitolite.conf folder, you can check that.
Or have an admin use the gitolite access
tracing command, which can check:
Upvotes: 1
Reputation: 6762
From gitolite's website,
the info command
The only command that is always available to every user is the info command (run ssh git@host info -h for help), which tells you what version of gitolite and git are on the server, and what repositories you have access to. The list of repos is very useful if you have doubts about the spelling of some new repo that you know was setup.
Probably you don't have access to those repositories.
Upvotes: 1