• Show log

    Commit

  • Hash : d46b0a04
    Author : Russell Belfer
    Date : 2012-11-19T16:34:44

    Improve iterator ignoring .git file
    
    The workdir iterator has always tried to ignore .git files, but
    it turns out there were some bugs.  This makes it more robust at
    ignoring .git files.
    
    This also makes iterators always check ".git" case insensitively
    regardless of the properties of the system.  This will make libgit2
    skip ".GIT" and the like.  This is different from core git, but on
    systems with case insensitive but case preserving file systems,
    allowing ".GIT" to be added is problematic.
    

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