• Show log

    Commit

  • Hash : d8889d2b
    Author : Russell Belfer
    Date : 2013-01-03T14:08:53

    Fix checkout bug rmv untracked trees from index
    
    When checking out with the GIT_CHECKOUT_REMOVE_UNTRACKED option
    and there was an entire tree in the working directory and in the
    index that is not in the baseline nor target commit, the tree was
    correctly(?) removed from the working directory but was not
    successfully removed from the index.  This fixes that and adds a
    test of the functionality.
    

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