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.
我的文本文件 (java) 我使用像$Author$,之类的标记$Date$,$Revision$这些标记在每次提交时都会更新。
$Author$
$Date$
$Revision$
我怎样才能在 Git 中做到这一点?
你可以使用 Git 的smudge 和 clean filters来做到这一点。你也可以使用pre-commit 钩子来做,但要小心。