• Show log

    Commit

  • Hash : 24d17de2
    Author : Russell Belfer
    Date : 2014-04-02T12:07:27

    Make stash and checkout ignore contained repos
    
    To emulate git, stash should not remove untracked git repositories
    inside the parent repo, and checkout's REMOVE_UNTRACKED should
    also skip over these items.
    
    `git stash` actually prints a warning message for these items.
    That should be possible with a checkout notify callback if you
    wanted to, although it would require a bit of extra logic as things
    are at the moment.
    

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