• Show log

    Commit

  • Hash : 8f7f5e55
    Author : Greg Price
    Date : 2013-03-31T14:56:32

    examples: rev-list
    
    This demonstrates parts of the interface for specifying revisions that
    Git users are familiar with from 'git rev-list', 'git log', and other
    Git commands.  A similar query interface is used in out-of-core
    command-line programs that browse a Git repo (like 'tig'), and may be
    useful for an 'advanced search' interface in GUI or web applications.
    
    In this version, we parse all the query modifiers we can support with
    the existing logic in revwalk: basic include/exclude commits, and the
    ordering flags.  More logic will be required to support '--grep',
    '--author', the pickaxe '-S', etc.
    
    Signed-off-by: Greg Price <price@mit.edu>
    

  • README.md

  • libgit2 examples

    These examples are meant as thin, easy-to-read snippets for Docurium (https://github.com/github/docurium) rather than full-blown implementations of Git commands. They are not vetted as carefully for bugs, error handling, or cross-platform compatibility as the rest of the code in libgit2, so copy with some caution.

    For HTML versions, check “Examples” at http://libgit2.github.com/libgit2