Commit 95367366 by Edward Thomson

merge: don't do rename detection on submodules

parent 49806e9b
...@@ -1075,7 +1075,7 @@ static int index_entry_similarity_inexact( ...@@ -1075,7 +1075,7 @@ static int index_entry_similarity_inexact(
int score = 0; int score = 0;
int error = 0; int error = 0;
if (GIT_MODE_TYPE(a->mode) != GIT_MODE_TYPE(b->mode)) if (!GIT_MODE_ISBLOB(a->mode) || !GIT_MODE_ISBLOB(b->mode))
return 0; return 0;
/* update signature cache if needed */ /* update signature cache if needed */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment