• M
    fast-import: do less work when given "from" matches current branch head · 0df32457
    Mike Hommey 提交于
    When building a fast-import stream, it's easy to forget the fact
    that for non-merge commits happening on top of the current branch
    head, there is no need for a "from" command. That is corroborated by
    the fact that at least git-p4, hg-fast-export and felipec's
    git-remote-hg all unconditionally use a "from" command.
    
    Unfortunately, giving a "from" command always resets the branch
    tree, forcing it to be re-read, and in many cases, the pack is also
    closed and reopened through gfi_unpack_entry.  Both are unnecessary
    overhead, and the latter is particularly slow at least on OSX.
    
    Avoid resetting the tree when it's unmodified, and avoid calling
    gfi_unpack_entry when the given mark points to the same commit as
    the current branch head.
    Signed-off-by: NMike Hommey <mh@glandium.org>
    Signed-off-by: NJunio C Hamano <gitster@pobox.com>
    0df32457
fast-import.c 87.4 KB