• Show log

    Commit

  • Hash : f5287fa6
    Author : Carlos Martín Nieto
    Date : 2014-07-04T17:17:23

    refspec: support asterisks in the middle of a pattern
    
    We used to assume a refspec would only have an asterisk in the middle of
    their respective pattern. This has not been a valid assumption for some
    time now with git.
    
    Instead of assuming where the asterisk is going to be, change the logic
    to treat each pattern as having two halves with a replacement bit in the
    middle, where the asterisk is.
    

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