• Show log

    Commit

  • Hash : 275693e2
    Author : Edward Thomson
    Date : 2018-02-20T12:45:40

    checkout test: ensure workdir mode is simplified
    
    Ensure that when examining the working directory for checkout that the
    mode is correctly simplified.  Git only pays attention to whether a file
    is executable or not.  When examining a working directory, we should
    coalesce modes in the working directory to either `0755` (indicating
    that a file is executable) or `0644` (indicating that it is not).
    
    Test this by giving the file an exotic mode, and ensuring that when
    checkout out a branch that changes the file's contents, that we do not
    have a checkout conflict.
    

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