I want to migrate an old project to Jenkins. It already had a couple of release which I don't want to (and sometimes can't - don't ask) build.
So basically, how can I tell Jenkins to build anything matching Git branches releases/1.10
and following, ignoring releases/0.1
up to releases/1.9.1
?
One option would be to tell Jenkins "you have seen+built these branches" - something which Jenkins remembers automatically if you tell it to build "release/*" - it will build "release/1.0" only when someone pushed something new to that branch.