• Show log

    Commit

  • Hash : c6f489c9
    Author : Carlos Martín Nieto
    Date : 2015-05-04T17:29:12

    submodule: add an ignore option to status
    
    This lets us specify in the status call which ignore rules we want to
    use (optionally falling back to whatever the submodule has in its
    configuration).
    
    This removes one of the reasons for having `_set_ignore()` set the value
    in-memory. We re-use the `IGNORE_RESET` value for this as it is no
    longer relevant but has a similar purpose to `IGNORE_FALLBACK`.
    
    Similarly, we remove `IGNORE_DEFAULT` which does not have use outside of
    initializers and move that to fall back to the configuration as well.
    

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