• Show log

    Commit

  • Hash : db106d01
    Author : Russell Belfer
    Date : 2012-10-30T09:40:50

    Move rename detection into new file
    
    This improves the naming for the rename related functionality
    moving it to be called `git_diff_find_similar()` and renaming
    all the associated constants, etc. to make more sense.
    
    I also moved the new code (plus the existing `git_diff_merge`)
    into a new file `diff_tform.c` where I can put new functions
    related to manipulating git diff lists.
    
    This also updates the implementation significantly from the
    last revision fixing some ordering issues (where break-rewrite
    needs to be handled prior to copy and rename detection) and
    improving config option handling.
    

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