Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 jenkins 中的正则表达式过滤 svn url。我只想在正则表达式中包含分支和主干,有人可以建议我使用过滤器吗?
这取决于您使用的目录结构。我假设您正在使用以下结构:
-projectA -trunk -tags -branches
我还假设 url 在其他方面是有效的
(branches|trunk)\/([^/]+)
如果是分支,这将为您提供分支名称。在trunk的情况下,路径的第一个子目录/文件
只需使用branches|trunk以防您不想要该名称
branches|trunk