Using Gerrit it is easy to accidentally merge unstable code from the develop branch into the stable branch:
$ git checkout develop
$ commit
$ git push origin HEAD:refs/for/stable
In Gerrit it isn't very clear that the proposed change comes from the develop branch and is to be merged into the stable branch. Is there a way to prevent this merge from happening, either in git or in Gerrit?
Update: For now we use a custom command to push to gerrit which finds the last branch in origin it was based on and only allow pushing to that branch.