You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried different rules to get these tags, but didn't succeed yet. My last attempt looks like
match /releases/$
action recurse
end match
match /releases/(.+)/project-alpha/
repository alpha
branch refs/tags/v\1
annotated true
end match
match /branches/(.+)/project-alpha
repository alpha
branch master
end match
These tag copy actions also seen by tool in logs:
Exporting revision 56445 /releases/2020.03.008 was copied from /branches/2020.03 rev 56444
done
Exporting revision 56449 /releases/2020.03.009 was copied from /branches/2020.03 rev 56448
done
I have read docs, went through examples and checked #83, but I am still stuck.
Could you please suggest how to approach those tags?
The text was updated successfully, but these errors were encountered:
I was able to generate the tags, closing the ticket. There are two things:
added separate recurse action for every sub-folder (my example was simplified too much).
used more precise regex.
match /releases/([\d\.]+)/$
action recurse
end match
match /releases/([\d\.]+)/some-folder/$
action recurse
end match
match /releases/([\d\.]+)/some-folder/project-alpha/
repository alpha
branch refs/tags/v\1
annotated true
end match
We have a non-standard layout with many projects within same svn repo
Let's take first one, its consequent development would be
And appropriate release tags (svn copies) are
I have tried different rules to get these tags, but didn't succeed yet. My last attempt looks like
These tag copy actions also seen by tool in logs:
I have read docs, went through examples and checked #83, but I am still stuck.
Could you please suggest how to approach those tags?
The text was updated successfully, but these errors were encountered: