我正在使用“external.atlassian.jgitflow”。当我运行命令“mvn jgitflow:release-finish”时,出现类似“错误完成发布:错误完成发布:org.eclipse.jgit.api.errors.CheckoutConflictException:签出与文件冲突:”的错误。只有 Child pom 处于冲突状态。错误的原因是什么?如何解决这个错误?
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<pushFeatures>true</pushFeatures>
<pushHotfixes>true</pushHotfixes>
<pushReleases>true</pushReleases>
<enableSshAgent>true</enableSshAgent>
<noDeploy>true</noDeploy>
<flowInitContext>
<masterBranchName>versionnewtest</masterBranchName>
<developBranchName>versiondevelop</developBranchName>
<featureBranchPrefix>feature/</featureBranchPrefix>
<releaseBranchPrefix>release/</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix/</hotfixBranchPrefix>
<versionTagPrefix>${project.artifactId}-</versionTagPrefix>
</flowInitContext>
<scmCommentPrefix>JgitFLow step: </scmCommentPrefix>
<pullDevelop>true</pullDevelop>
<pullMaster>true</pullMaster>
<squash>false</squash>
<allowSnapshots>true</allowSnapshots>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>