• Show log

    Commit

  • Hash : 134d8c91
    Author : Russell Belfer
    Date : 2013-01-08T15:53:13

    Update iterator API with flags for ignore_case
    
    This changes the iterator API so that flags can be passed in to
    the constructor functions to control the ignore_case behavior.
    At this point, the flags are not supported on tree iterators (i.e.
    there is no functional change over the old API), but the API
    changes are all made to accomodate this.
    
    By the way, I went with a flags parameter because in the future
    I have a couple of other ideas for iterator flags that will make
    it easier to fix some diff/status/checkout bugs.
    

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