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
posted @ 2020-08-06 10:06  秋来叶黄  阅读(919)  评论(0编辑  收藏  举报