GitGit missing Change-Id in commit message footer解决方法

Posted 林多

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitGit missing Change-Id in commit message footer解决方法相关的知识,希望对你有一定的参考价值。

Git missing Change-Id in commit message footer解决方法

  • 在Git向服务器提交代码时,出现如下错误
missing Change-Id in commit message footer
  • 原因:项目仓库.git/hooks目录下,commit-msg文件缺失。
  • 解决方法1:一般在提交代码报错时,会给出相应解决的提示。
remote: Processing changes: refs: 1, done    
remote: ERROR: missing Change-Id in commit message footer
remote: 
remote: Hint: To automatically insert Change-Id, install the hook:
remote:   gitdir=$(git rev-parse --git-dir); scp -p -P 29418 xxxxx@xxxx:hooks/commit-msg $gitdir/hooks/
remote: And then amend the commit:
remote:   git commit --amend
  • 如上所示,依次在项目路径下输入如下命令,即可解决:
gitdir=$(git rev-parse --git-dir); 
# 将xxxxx@xxxx 替换成相应用户名、服务器即可(该命令从服务器拷贝commit-msg文件)
scp -p -P 29418 xxxxx@xxxx:hooks/commit-msg $gitdir/hooks/
# 再提交一次即可生成change-id
git commit --amend
  • 解决办法2:其实和上面的办法差不多,如果将当前项目留有备份,直接将备份项目的.git/hooks/commit-msg拷贝到,当前项目相应目录即可。

Git系列

以上是关于GitGit missing Change-Id in commit message footer解决方法的主要内容,如果未能解决你的问题,请参考以下文章

[gerrit场景教程] gerrit missing Change-Id

[gerrit场景教程] gerrit missing Change-Id

git push 时:报missing Change-Id in commit message footer的错误

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

git push 报错:missing Change-Id in commit message footer

git学习--commit-msg缺失导致的missing Change-Id问题分析