• Show log

    Commit

  • Hash : d723dbed
    Author : Arthur Schreiber
    Date : 2014-05-30T19:26:49

    Remote: Set an error when a remote cannot be found.
    
    Inside `git_remote_load`, the calls to `get_optional_config` use
    `giterr_clear` to unset any errors that are set due to missing config
    keys. If neither a fetch nor a push url config was found for a remote,
    we should set an error again.
    

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