Gerrit error when Change-Id in commit messages are missing

来源:互联网 发布:泰国免税店mac口红价格 编辑:程序博客网 时间:2024/06/11 03:12
remote: Resolving deltas:   0% (0/12)remote: ERROR: missing Change-Id in commit message...remote: Change-Id: I55862204ef71f69bc88c79fe2259f7cb8365699aTo ssh://prc@test.gerrit.xxx.com:29418/hello_git

! [remote rejected] HEAD -> refs/for/master (missing Change-Id in commit message)

配置gerrit环境,上传代码出错,缺少 Change-Id

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 fromhttp://your_gerrit_address/tools/hooks/commit-msg and copy to .git/hooks

阅读全文
0 0