8

我们使用 git 存储库和 maven 发布插件。在第一个构建步骤中,我们将所有更改提取到本地存储库,然后在下一个构建步骤中运行mvn release:prepare release:perform. release:prepare更新工作区,更新 pom 文件中的版本,在存储库中创建标签,运行所有测试,构建 jar 等。如果没问题,它会将本地存储库更改推送到远程(更新的 pom 和创建的标签)。

问题是当有人同时推送一些更改时,从 Maven 推送失败。错误信息是:

error: failed to push some refs to 'http://<my_repository>'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again.  See the 'Note about
fast-forwards' section of 'git push --help' for details.

有人有类似的问题吗?如何解决?

4

1 回答 1

3

看看pushChanges

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-release-plugin</artifactId>
    <configuration>
        <pushChanges>false</pushChanges>
    </configuration>
</plugin>

...稍后再推

于 2012-07-31T21:29:10.370 回答