• S
    Bypass expensive content comparsion during rename detection. · 7da41f48
    Shawn O. Pearce 提交于
    When comparing file contents during the second loop through a rename
    detection attempt we can skip the expensive byte-by-byte comparsion
    if both source and destination files have valid SHA1 values.  This
    improves performance by avoiding either an expensive open/mmap to
    read the working tree copy, or an expensive inflate of a blob object.
    
    Unfortunately we still have to at least initialize the sizes of the
    source and destination files even if the SHA1 values don't match.
    Failing to initialize the sizes causes a number of test cases to fail
    and start reporting different copy/rename behavior than was expected.
    Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
    Signed-off-by: NJunio C Hamano <junkio@cox.net>
    7da41f48
diffcore-rename.c 13.0 KB