I have two questions about Gerrit:
How do I convert or import an already existing Git repository into Gerrit\'s format? There were a lot of com
Additional information...
So you can copy the git repository straight across into the gerrit data location and it will show up after a restart ( or flush of cache ( reindex )).
BUT you will be missing the important configuration from your repository, which may prevent ability to push, create branches, review etc.
If you view the repo you will see it is missing the 'refs/meta/config' branch. So in an normal system without changes this will inherit from All-Projects, but this could be any Project on your configuration.
Steps to fix configuration:
e.g.
[access]
inheritFrom = All-Projects
You can now use the repository with sensible inherited configuration the same as your other projects.