I am trying to use the maven release plugin to create a branch from the trunk.
Ex. repository.git / child1 / child2 /
The plugin creates a new branch containing my entire repository. How can I limit it to creating a branch containing only child1?
Currently, the pom.xml connection, the developer connection, and the URL are as follows:
<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>
In svn, we used this using the absolute path to child1 in DeveloperConnection.
Thanks,
Gayatri
source share