• Show log

    Commit

  • Hash : c0eba379
    Author : Patrick Steinhardt
    Date : 2017-03-14T11:01:19

    diff_parse: correctly set options for parsed diffs
    
    The function `diff_parsed_alloc` allocates and initializes a
    `git_diff_parsed` structure. This structure also contains diff options.
    While we initialize its flags, we fail to do a real initialization of
    its values. This bites us when we want to actually use the generated
    diff as we do not se the option's version field, which is required to
    operate correctly.
    
    Fix the issue by executing `git_diff_init_options` on the embedded
    struct.
    

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