• Show log

    Commit

  • Hash : 43201809
    Author : Edward Thomson
    Date : 2014-12-10T19:12:16

    checkout: disallow bad paths on HFS
    
    HFS filesystems ignore some characters like U+200C.  When these
    characters are included in a path, they will be ignored for the
    purposes of comparison with other paths.  Thus, if you have a ".git"
    folder, a folder of ".git<U+200C>" will also match.  Protect our
    ".git" folder by ensuring that ".git<U+200C>" and friends do not match it.
    

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