• Show log

    Commit

  • Hash : a32bc85e
    Author : Edward Thomson
    Date : 2015-08-07T12:43:49

    git_index_add: allow case changing renames
    
    On case insensitive platforms, allow `git_index_add` to provide a new
    path for an existing index entry.  Previously, we would maintain the
    case in an index entry without the ability to change it (except by
    removing an entry and re-adding it.)
    
    Higher-level functions (like `git_index_add_bypath` and
    `git_index_add_frombuffers`) continue to keep the old path for easier
    usage.
    

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