我正在尝试使用 Maven 发布插件从主干创建分支。
前任。repository.git/child1/child2/
该插件创建一个包含我的整个存储库的新分支。我怎样才能限制它创建一个只包含 child1 的分支?
目前 pom.xml 连接、开发者连接和 url 如下:
<scm>
<connection>scm:git:ssh://githost/repository.git</connection>
<developerConnection>scm:git:ssh://githost/repository.git</developerConnection>
<url>scm:git:ssh://githost/repository.git</url>
<tag>HEAD</tag>
</scm>
在 svn 中,我们曾经通过在 developerConnection 中使用 child1 的绝对路径来实现这一点。
谢谢,
加亚特里