• Show log

    Commit

  • Hash : ee667307
    Author : Edward Thomson
    Date : 2016-02-11T10:48:48

    rebase: introduce inmemory rebasing
    
    Introduce the ability to rebase in-memory or in a bare repository.
    
    When `rebase_options.inmemory` is specified, the resultant `git_rebase`
    session will not be persisted to disk.  Callers may still analyze
    the rebase operations, resolve any conflicts against the in-memory
    index and create the commits.  Neither `HEAD` nor the working
    directory will be updated during this process.
    

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