Gerrit Change has Status:Submitted, Merge Pending, how to solve it?

前端 未结 7 1623
不知归路
不知归路 2020-12-17 10:12

The Gerrit system is only used by us several people. Once there is a Change A, and its status is: \"Submitted, Merge Pending\". The change list in the \"open\" web page. Als

7条回答
  •  忘掉有多难
    2020-12-17 11:00

    I faced this issue because I pushed a tag to branch name:

    git tag x.y.z HEAD
    git push -f origin x.y.z:master
    

    So better push a branch instead,

    git tag x.y.z HEAD
    git push -f origin HEAD:master
    

    That way gerrit is able to merge again my pending patches.

提交回复
热议问题