• Show log

    Commit

  • Hash : 0b9ebb54
    Author : Carlos Martín Nieto
    Date : 2013-08-14T11:18:05

    remote: relax the url rules
    
    Accept any value for the remote's url, including an empty string which
    we used to reject as invalid configuration.
    
    This is not quite what git does (although it has its own problems with
    such configurations) and it makes it harder to fix the issue, by not
    letting the user modify it.
    
    As we already need to check for a valid URL when we try to connect to
    the network, let that perform the check, as we don't need to do it
    anywhere else.
    

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