• Show log

    Commit

  • Hash : 16248ee2
    Author : Russell Belfer
    Date : 2012-11-21T11:03:07

    Fix up some missing consts in tree & index
    
    This fixes some missed places where we can apply const-ness to
    various public APIs.
    
    There are still some index and tree APIs that cannot take const
    pointers because we sort our `git_vectors` lazily and so we can't
    reliably bsearch the index and tree content without applying a
    `git_vector_sort()` first.
    
    This also fixes some missed places where size_t can be used and
    where const can be applied to a couple internal functions.
    

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