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.

link|improve this question
Check this question stackoverflow.com/questions/527833/… – the.malkolm Sep 19 '11 at 16:10
The solution to that question prevents pushing at all. I'd like to push, but want to prevent develop (or any branch created from develop) to be pushed to refs/for/testing or refs/for/stable – Taco Sep 20 '11 at 8:26
1  
So you have to make custom pre-receive hook for your remote repo – the.malkolm Sep 21 '11 at 21:59
...which is impossible with gerrit :'( – Taco Sep 27 '11 at 15:34
1  
Your topic summary said "merged" but your example merely shows a push to gerrit, which doesn't merge until it's approved. If you want to prevent the push, then your script seems the correct thing. If you want to prevent the merge (in gerrit), then you can go to the Project / Access options and make sure there is not a Submitters allowed for the branch. – e40 Apr 11 at 18:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.