[remote "hostname"]
url = gerrit@hostname/test/git/${name}
projects = your_project_name
Specifies which repositories should be replicated to the remote. It can be provided more than once, and supports three formats: regular expressions, wildcard matching, and single project matching. All three formats match case-sensitive.
Values starting with a caret
^are treated as regular expressions.^foo/(bar|baz)would match the projectsfoo/bar, andfoo/baz. Regular expressions have to fully match the project name. So the above example would not matchfoo/bar2, while^foo/(bar|baz).*would.
Values that are not regular expressions and end in
*are treated as wildcard matches. Wildcards match projects whose name agrees from the beginning until the trailing*. Sofoo/b*would match the projectsfoo/b,foo/bar, andfoo/baz, but neitherfoobar, norbar/foo/baz.
Values that are neither regular expressions nor wildcards are treated as single project matches. So
foo/barmatches only the projectfoo/bar, but no other project.
By default, replicates without matching, i.e. replicates everything to all remotes.