• Show log

    Commit

  • Hash : 2123a17f
    Author : Russell Belfer
    Date : 2013-12-02T13:27:06

    Fix bug making split deltas a COPIED targets
    
    When FIND_COPIES is used in combination with BREAK_REWRITES for
    rename detection, there was a bug where the split MODIFIED delta
    was only used as a target for RENAME records and not for COPIED
    records.  This fixes that, converting the split into a pair of
    DELETED and COPIED deltas when that circumstance arises.
    

  • README.md

  • Writing Clar tests for libgit2

    For information on the Clar testing framework and a detailed introduction please visit:

    https://github.com/vmg/clar

    • Write your modules and tests. Use good, meaningful names.

    • Make sure you actually build the tests by setting:

        cmake -DBUILD_CLAR=ON build/
    • Test:

        ./build/libgit2_clar
    • Make sure everything is fine.

    • Send your pull request. That’s it.