Show hidden project Gerrit
We have a project in Gerrit that is hidden. I have two questions about this "feature":
- Where can I find this setting on disk or database so I can check the status of the project?
- How can I reactivate a hidden project?
I am an administrator at Gerrit and have CLI access for the server, so I can access the files on the server if needed.
Hello,
Johan Keys
+3
source to share
1 answer
Probably the easiest way is to use the web interface. Accessing project settings and changing state from Hidden to Active (you can access this page via https://review.example.com/#/admin/projects/example for the sample project):
You can also use gerrit set-project
SSH command to change project visibility (see docs ):
$ ssh -p 29418 review.example.com gerrit set-project example --project-state ACTIVE
I think that it is stored in the project.config
in the refs / the meta / the config that would be another way.
+5
source to share