• Show log

    Commit

  • Hash : f608f3bb
    Author : Russell Belfer
    Date : 2014-04-24T15:25:01

    Test toggling core.precomposeunicode yields rename
    
    There is an interesting difference with core Git here, though.
    Because libgit2 will do rename detection with the working directory,
    in the last case where the HEAD and the working directory both
    have the decomposed data and the index has the composed data, we
    generate a single status record with two renames whereas Git will
    generate one rename (head to index) and one untracked file.
    

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