• Show log

    Commit

  • Hash : ba67c075
    Author : Carlos Martín Nieto
    Date : 2014-08-31T17:16:40

    remote: get rid of git_remote_valid_url()
    
    It does the same as git_remote_supported_url() but has a name which
    implies we'd check the URL for correctness while we're simply looking at
    the scheme and looking it up in our lists.
    
    While here, fix up the tests so we check all the combination of what's
    supported.
    

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