• Show log

    Commit

  • Hash : f3b5bc83
    Author : Russell Belfer
    Date : 2013-06-16T21:51:43

    Add test of rename with no changes
    
    A tree to index rename with no changes was getting erased by
    the iteration routine (if the routine actually loaded the data
    for the unmodified file).  This invokes the code path that was
    previously messing up the diff and iterates twice to make sure
    that the iteration process itself doesn't modify the data.
    

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