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
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.