• Show log

    Commit

  • Hash : 97ad85b8
    Author : Russell Belfer
    Date : 2013-12-02T13:30:05

    Add GIT_DIFF_FIND_DELETE_UNMODIFIED flag
    
    When doing copy detection, it is often necessary to include
    UNMODIFIED records in the git_diff so they are available as source
    records for GIT_DIFF_FIND_COPIES_FROM_UNMODIFIED.  Yet in the final
    diff, often you will not want to have these UNMODIFIED records.
    This adds a flag which marks these UNMODIFIED records for deletion
    from the diff list so they will be removed after the rename detect
    phase is over.
    

  • 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.