2
我一直在搜索谷歌,找不到任何關於此錯誤的信息。git commit error:無效提交信息
以下是完整的錯誤:
git commit -m "update ui"
INVALID COMMIT MSG: does not match "type scope: subject" ! was: "update ui"
Note: scope must be only letters.
我一直在搜索谷歌,找不到任何關於此錯誤的信息。git commit error:無效提交信息
以下是完整的錯誤:
git commit -m "update ui"
INVALID COMMIT MSG: does not match "type scope: subject" ! was: "update ui"
Note: scope must be only letters.
你有你的系統上commit-msg
hook被強制在提交信息的格式。這大概是某種公司政策。
正確。在這種情況下,所需的格式是'scope:message',其中'scope'只能是字母(我猜沒有數字或空格)。 –
謝謝,這絕對是這種情況。 – thienedits