I have a jenkins projec开发者_如何转开发t with few svn locations. How can I make them all checkout the same revision when using scm integration?
As far as I understand your question you could use the @Revision-syntax.
Syntax:
<SVNURL>@Revision
Example 1:
svn://server/projectA/trunk/@1234
The above example would checkout the trunk
of projectA
at revision 1234.
精彩评论