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 手册页看来,我应该使用 --follow。让我困惑的是,对于--find-renames,我可以在相似度索引上指定阈值,而--follow 没有这样的阈值。
我的问题是为什么我不需要为 --follow 指定阈值来查找重命名?
谢谢
如果您使用 指定阈值--find-renames,则在使用 时将应用该阈值--follow。但是当您只指定--follow使用默认的相似度索引时(在大多数情况下应该没问题)。
--find-renames
--follow
Follow 需要重命名检测才能工作,但重命名检测本身对于例如git show、git status等也很有用。我建议默认使用以下命令启用它:
git show
git status
git config --global diff.renames true