• Show log

    Commit

  • Hash : e24c60db
    Author : Edward Thomson
    Date : 2015-09-17T09:42:05

    mkdir: find component paths for mkdir_relative
    
    `git_futils_mkdir` does not blindly call `git_futils_mkdir_relative`.
    
    `git_futils_mkdir_relative` is used when you have some base directory
    and want to create some path inside of it, potentially removing blocking
    symlinks and files in the process.  This is not suitable for a general
    recursive mkdir within the filesystem.
    
    Instead, when `mkdir` is being recursive, locate the first existent
    parent directory and use that as the base for `mkdir_relative`.
    

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