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.
我正在寻找一种使用 prepare-commit-msg 钩子将作者日期添加到 GIT 中的提交消息的方法。这是 GIT->TFS 迁移解决方法所必需的。我想出了以下脚本,但我找不到引用当前提交的方法,以便它可以正常工作。
#!/bin/sh git show -s --format="<timestamp>%ai</timestamp>" %curcommit >> $1
为了使脚本按预期工作,我应该插入什么而不是 %curcommit?