• Show log

    Commit

  • Hash : 967f5a76
    Author : Edward Thomson
    Date : 2014-05-23T14:50:51

    git_checkout_index: checkout other indexes
    
    git_checkout_index can now check out other git_index's (that are not
    necessarily the repository index).  This allows checkout_index to use
    the repository's index for stat cache information instead of the index
    data being checked out.  git_merge and friends now check out their
    indexes directly instead of trying to blend it into the running index.
    

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