git commit提交信息修改

1 命令

git commit --amend

2 例子

 git commit

輸入以下數據:

feat: test commitlint
test commitlint test commitlint of the project

根據commitlint規範的提示,得到如下的數據提示,但是我又強迫症

husky > commit-msg (node v10.15.1)
⧗   input: feat: test commitlint
⚠   body must have leading blank line [body-leading-blank]

⚠   found 0 problems, 1 warnings
ⓘ   Get help: https://github.com/conventional-changelog/commitlint/#what-is-commitlint

[master 541cf96] feat: test commitlint test commitlint of the project
 Date: Wed Jan 15 15:32:35 2020 +0800
 1 file changed, 1 deletion(-)

根據上述提示我們發現有一個warning存在,強迫症患者想要修改git commit message 那麼只需要執行:

git commit --amend

然後對提交信息進行修改就OK啦!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章