My project is using built-in replication of Gerrit 2.4.2 to mirror content to another git repo.
My configuration looks like below,
[remote "another-git-server"]
url = mirorserver.com:/git/projects/${name}
push = +refs/heads/*:refs/heads/*
push = +refs/tags/*:refs/tags/*
However Gerrit replicates all refs/changes/* to mirror git repo. I don't want to replicate those internal review changes to another git server.
Is there any way to prevent gerrit replicate those references?