首页 > 编程知识 正文

解决办法 not Signed-off-by author/committer/uploader in commit message footer

时间:2023-05-04 18:09:29 阅读:240497 作者:4102

现象

一个 Gerrit 是从已经 merge 的仓库 回滚出来的一个,然后在上面修改,修改完了提交的时候发现一个错误

! [remote rejected] HEAD -> refs/drafts/stable/beryllium (not Signed-off-by author/committer/uploader in commit message footer)

对于gerrit 这个工具网上的解决方法是比较少的,看了官方有个解决方案。

https://gerrit-review.googlesource.com/Documentation/error-not-signed-off-by.html

大概说下, 就是这几个原因

missing Signed-off-by in the commit message footer
Signed-off-by is contained in the commit message footer but it’s neither from the author, committer nor uploaderSigned-off-by from the author, committer or uploader is contained in the commit message but not in the footer (last paragraph)

解决办法

解决办法就是

To be able to push your commits you have to update the commit messages as explained here so that they contain a Signed-off-by from the author, committer or uploader in the last paragraph. However it is important that you only add a Signed-off-by if you understand the semantics of the Signed-off-by and the commit applies to the rules that are connected with this footer.

通俗的讲就是, 先 git commit --amend,然后把对应的用户信息加上去,格式如下
Signed-off-by: rikxiao <xxd0225@gmail.com>

最后再次push即可。

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。