#Mirroring repositories: expect branch x
8 messages · Page 1 of 1 (latest)
There is a mirror_branch_regex that you could potentially be able to use for this, but it would have to be all-inclusive of the branches you wanted to mirror.
Ah, thanks! I had the hope for a sec I'd use neagtiv parameters like ^(?:(?!branchNameX).)*$
it's possible you could try a negative lookahead in regex, but I don't know if those are supported by the underlying regex method GitLab uses. They're not universally supported
that's pretty similar to the regex you just posted 🙂
It was worth a try :D