pyraz
pyraz

Reputation: 113

Gitolite Wildcards not Working

I'm trying to use wildcards in my Gitolite v3 installation, but it's not working. When I push the gitolite.conf file with the wildcard definitions, it actually creates folders called "CREATOR", as opposed to using it as a wildcard. If I try to create a repository as a user, I get an error that the repo doesn't exist. Well of course it doesn't, I'm trying to create it!

Here's the relevant definition in gitolite.conf:

individual homework script repositories

repo  f12/csci442/CREATOR/scripts
  C   = @f12_csci442
  RW+ = CREATOR @s12_csci442_wheel

When I try to create a repo as a user in the @f12_csci442 group, I'm told

FATAL: R any f12/csci442/twhitney/scripts twhitney DENIED by fallthru
(or you mis-spelled the reponame)

Any Suggestions?

Upvotes: 0

Views: 1049

Answers (1)

Christoph Leiter
Christoph Leiter

Reputation: 9345

Did you set the variable GL_WILDREPOS to 1 (in ~/gitolite.rc)?

Upvotes: 1

Related Questions