Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

the gerrit version is : 2.4.2

1)there is a branch "master" on gerrit

2)create a new branch "newbranch" on gerrit

3)push some changes to the gerrit's "newbranch"

4)verify and merge the changes to gerrit's "newbranch"

then, I want to merge the "newbranch" to "master", and delete the "newbranch"

What should I do ?

I tried do this:

git fetch

git checkout master

git merge newbranch

git push origin master:refs/for/master

but the gerrit warning me : no changes

share|improve this question

1 Answer

This situation has been reported as a bug in Gerrit. Here's a solution/workaround from Gerrit's issue tracker:

To the best of my knowledge, you have 2 options currently -

  1. Force push to refs/heads. It is just a fast-forward, so in theory everything has already been reviewed and verified. There is no point in doing so again, so just skip that process and push to refs/heads rather than refs/for.

  2. Go ahead and create a merge commit. Use 'git merge --no-ff' - this will create a merge commit even though it isn't necessary in your fast-forward situation. Then the merge commit can be uploaded, reviewed, verified, and merged like normal.

My company tends to go with option 2. I'll close this as wontfix, but if you have any suggestions on how to do this better please let us know.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.