This is a known bug in Gerrit 2.2.1. You need to make sure you have an
empty refs/meta/config branch in each project.
refs/meta/config is not a config file, but a branch in that repository.
Did you consider that?
Manuel
This is caused by the project not having a "refs/meta/config" branch. I'm fixing it in the next release (2.2.2), but in the interim you can work around it by creating this branch yourself. The hack looks like this: mkdir tmp cd tmp git init touch project.config git add project.config git commit -m "Initially empty project.config" # Execute this push as your Gerrit "user", directly into the repository git push path/to/your/repository HEAD:refs/meta/config