• Show log

    Commit

  • Hash : 744cc03e
    Author : Russell Belfer
    Date : 2012-10-30T12:10:36

    Add git_config_refresh() API to reload config
    
    This adds a new API that allows users to reload the config if the
    file has changed on disk.  A new config callback function to
    refresh the config was added.
    
    The modified time and file size are used to test if the file needs
    to be reloaded (and are now stored in the disk backend object).
    
    In writing tests, just using mtime was a problem / race, so I
    wanted to check file size as well.  To support that, I extended
    `git_futils_readbuffer_updated` to optionally check file size in
    addition to mtime, and I added a new function `git_filebuf_stats`
    to fetch the mtime and size for an open filebuf (so that the
    config could be easily refreshed after a write).
    
    Lastly, I moved some similar file checking code for attributes
    into filebuf.  It is still only being used for attrs, but it
    seems potentially reusable, so I thought I'd move it over.
    

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