• Show log

    Commit

  • Hash : 80c29fe9
    Author : Russell Belfer
    Date : 2014-01-17T10:45:11

    Add git_commit_amend API
    
    This adds an API to amend an existing commit, basically a shorthand
    for creating a new commit filling in missing parameters from the
    values of an existing commit.  As part of this, I also added a new
    "sys" API to create a commit using a callback to get the parents.
    This allowed me to rewrite all the other commit creation APIs so
    that temporary allocations are no longer needed.
    

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