如何使几个位置在詹金斯中使用相同的svn修订版

问题描述:

我有一个几乎没有svn位置的jenkins项目.使用scm集成时,如何使它们全部签出相同的修订版?

I have a jenkins project with few svn locations. How can I make them all checkout the same revision when using scm integration?

据我所知,您可以使用@Revision语法.

As far as I understand your question you could use the @Revision-syntax.

语法:
<SVNURL>@Revision

示例1:
svn://server/projectA/trunk/@1234

上面的示例将检出版本1234中的projectAtrunk.

The above example would checkout the trunk of projectA at revision 1234.