clone报告超过限制

有时候在clone比较大的工程时,因为一些配置限制,可能会导致报错,如下

warning: inexact rename detection was skipped due to too many files.

warning: you may want to set your diff.renameLimit variable to at least 19371 and retry the command.

解决方法就是:

You need to set and unset that rename limit:

git config merge.renameLimit 999999 //这一条就可以用,下面这条没有用到
git config --unset merge.renameLimit
原文地址:https://www.cnblogs.com/studywithallofyou/p/13444511.html