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.
我正在使用 Git 存储库,我需要获取文件的“责备”数据(例如 log-tree.c)。所以,我正在使用以下命令
git --git-dir=/home/gh/git/.git --work-tree=/home/gh/git blame log-tree.c
但是,它只显示文件最后版本的数据,但我需要获取该文件每个版本的“责备”信息。那么,我该怎么做呢?
<rev>您可以通过在命令行上指定 a 来指定您想要“责备”输出的修订版。例如:
<rev>
git blame HEAD^ log-tree.c
将显示上一个版本的责备输出。您可以使用此功能来获取文件的任何历史版本的责备输出。