我的项目正在使用 Gerrit 2.4.2 的内置复制将内容镜像到另一个 git 存储库。
我的配置如下所示,
[remote "another-git-server"]
url = mirorserver.com:/git/projects/${name}
push = +refs/heads/*:refs/heads/*
push = +refs/tags/*:refs/tags/*
然而,Gerrit 将所有refs/changes/*复制到镜像 git repo。我不想将这些内部审查更改复制到另一个 git 服务器。
有什么办法可以防止 gerrit 复制这些引用?