4

我正在尝试使用 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 的绝对路径来实现这一点。

谢谢,

加亚特里

4

1 回答 1

6

使用 Git 发布多模块 maven 项目有帮助 + 您需要升级到 2.3.2 版本的 maven-release-plugin

于 2012-12-07T11:05:49.633 回答