使用Git提交代码时,遇到missing Change-Id in commit message footer
会在提交失败信息中提示如何操作,缺失change-Id 会出现如下提示信息,Hint: To automatically insert Change-Id, install the hook:
gitdir=$(git rev-parse --git-dir); scp -p -P 29418 name@git.co.com:hooks/commit-msg ${gitdir}/hooks/
按照提示执行 gitdir....命令然后重新commit 和 push 就可以
git commit --amend //不需要修改都行 直接退出即可
git push origin