我使用jGitFlow
插件如下:
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<pushFeatures>true</pushFeatures>
<pushReleases>true</pushReleases>
<pushHotfixes>true</pushHotfixes>
<noDeploy>true</noDeploy>
</configuration>
</plugin>
当我运行mvn jgitflow:feature-start
并输入分支名称(例如testSomething
)时,它立即被推送到原点。我可以通过列出分支来看到git branch -a
:
* feature/testSomething
remotes/origin/feature/testSomething
到目前为止,一切都很好。但现在我在做mvn jgitflow:release-start
。我进入新版本,下一个开发版本,目标运行完成。我在新创建的发布分支上,但这个分支没有被推送到远程。我做错了什么?这是故意的吗?