zoukankan      html  css  js  c++  java
  • 解决办法 not Signedoffby author/committer/uploader in commit message footer

    现象

    一个 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即可。

  • 相关阅读:
    react 中文文档案例三 (开关按钮)
    react 中文文档案例二 (头像时间)
    react 中文文档案例一 (倒计时)
    韩昊 20190905-2 博客作业
    韩昊 20190905-3 命令行和控制台编程
    bug的状态
    冒泡排序
    python简单实现自动化
    如何写好测试用例——慕课网
    快速搭建springboot项目
  • 原文地址:https://www.cnblogs.com/ievjai/p/14382674.html
Copyright © 2011-2022 走看看