Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  Bypass expensive content comparsion during rename detection.
  • Loading branch information
Junio C Hamano committed Dec 14, 2006
2 parents f5e6b89 + 7da41f4 commit eab9021
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions diffcore-rename.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ static int is_exact_match(struct diff_filespec *src,
return 0;
if (src->size != dst->size)
return 0;
if (src->sha1_valid && dst->sha1_valid)
return !hashcmp(src->sha1, dst->sha1);
if (diff_populate_filespec(src, 0) || diff_populate_filespec(dst, 0))
return 0;
if (src->size == dst->size &&
Expand Down

0 comments on commit eab9021

Please sign in to comment.