Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个钩子脚本以获取当前正在提交的文件的提交消息,并更改提交消息然后提交,如果它不满足模式。
我的问题是,有没有办法在提交文件之前获取文件的提交消息并更改提交消息然后提交文件?
该pre-commit钩子旨在检查提交的内容,而不是提交消息。
pre-commit
您可能正在寻找一个prepare-commit-msg钩子或更可能是一个commit-msg钩子来更改提交消息。
prepare-commit-msg
commit-msg
以下是与提交操作相关的钩子的有序列表:
有关不同钩子的更多信息,请参阅githooks 手册页。