• Show log

    Commit

  • Hash : 96869a4e
    Author : Russell Belfer
    Date : 2013-12-03T16:45:39

    Improve GIT_EUSER handling
    
    This adds giterr_user_cancel to return GIT_EUSER and clear any
    error message that is sitting around.  As a result of using that
    in places, we need to be more thorough with capturing errors that
    happen inside a callback when used internally.  To help with that,
    this also adds giterr_capture and giterr_restore so that when we
    internally use a foreach-type function that clears errors and
    converts them to GIT_EUSER, it is easier to restore not just the
    return value, but the actual error message text.
    

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