我使用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
。我输入新版本,下一个开发版本,目标运行完成。我在新创建的发布分支上,但是这个分支没有被推送到远程。我做错了什么?这是为了吗?
答案 0 :(得分:2)
事实证明,我们的git存储库只能通过pull-requests进行修改,因此推送不起作用。有点遗憾的是插件忽略了推送的返回值,并且至少不会发出警告。