All

I set up a branch in the remote repository and made some commits on that branch. Now I want to merge the remote branch to the remote master.

Basically follows are my operations:

  1. checkout branch
  2. checkout master
  3. merge branch and fix merging errors
  4. commit
  5. push origin HEAD:refs/for/master

But get error messages on the 5th step:

remote: Resolving deltas:   0% (0/12)

remote: ERROR: missing Change-Id in commit message
...

remote: Change-Id: I55862204ef71f69bc88c79fe2259f7cb8365699a

To ssh://prc@test.gerrit.xxx.com:29418/hello_git
 ! [remote rejected] HEAD -> refs/for/master (missing Change-Id in commit message)

BR/PRC

link|improve this question

29% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Check if your commits have Change-Id: ... in their descriptions. Every commit should have them.

If no, use git rebase -i to reword the commit messages and add proper Change-Ids (usually this is a SHA1 of the first version of the reviewed commit).

For the future, you should install commit hook, which automatically adds the required Change-Id.

Execute scp -p -P 29418 username@your_gerrit_address:hooks/commit-msg .git/hooks/ in the repository directory or download them from http://your_gerrit_address/tools/hooks/commit-msg and copy to .git/hooks

link|improve this answer
exactly, it is a good solution – PRC Jan 16 at 5:57
I've found that the Change-Id: can be missed by Gerrit if you add e.g. a "Conflict:" line below it. So make sure it is on the last line of the commit. – qneill May 10 at 14:35
@qneill Sounds like a bug, could you report it to the Gerrit developer? – Rafał Rawicki May 10 at 15:21
feedback

It is because Gerrit is configured to require Change-Id in the commit messages.

http://gerrit.googlecode.com/svn-history/r6114/documentation/2.1.7/error-missing-changeid.html

You have to change the messages of every commit that you are pushing to include the change id ( using git filter-branch ) and only then push.

link|improve this answer
I run git commit --amend to fix the commit log message: Here are the current log messages: commit 8152da05ce0235cb779620410474731868664296 Author: PRC <panruochen@gmail.com> Date: Thu Jan 12 17:24:33 2012 +0800 Merge my branch to master Change-Id: I70aee922f6310e4766eb15694deb2fb3579ed042 But I still can't push the branch to the master with the same errors. – PRC Jan 13 at 7:21
feedback

Your Answer

 
or
required, but never shown

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