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

前端 未结 7 1593
不知归路
不知归路 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:02

    1. Abandon your push from Gerrit.

    On Terminal:

    1. git log
    2. git reset HEAD~n

    where n is the commit count from top in list of commits generated on terminal from step 2

    1. git add .
    2. git commit -m "Your message"
    3. git push

    now merge your commit on Gerrit.

提交回复
热议问题