Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-10Reorganize diff and add basic diff driverRussell Belfer
This is a significant reorganization of the diff code to break it into a set of more clearly distinct files and to document the new organization. Hopefully this will make the diff code easier to understand and to extend. This adds a new `git_diff_driver` object that looks of diff driver information from the attributes and the config so that things like function content in diff headers can be provided. The full driver spec is not implemented in the commit - this is focused on the reorganization of the code and putting the driver hooks in place. This also removes a few #includes from src/repository.h that were overbroad, but as a result required extra #includes in a variety of places since including src/repository.h no longer results in pulling in the whole world.
2013-02-07Fetchhead: don't expect a tag that isn't thereBen Straub
2013-02-07Fix fetchhead tests to expect nearly-danglingBen Straub
2013-01-25Use cl_assert_equal_s() instead of strcmp().Sebastian Bauer
Replaced all cl_assert(!strcmp()) or semantically equivalent forms by cl_assert_equal_s().
2013-01-02Cleanup Clar to make it SIMPLERVicent Marti
2012-12-20fetchhead reading/iteratingEdward Thomson
2012-12-16Fix fetchhead testsBen Straub
2012-12-15Move non-options back out of options structBen Straub
2012-12-15Deploy git_clone_options; remove git_clone_bareBen Straub
2012-12-13Define constant for default fetch specBen Straub
2012-12-13Convert clone to use dangling remotesBen Straub
2012-11-28API updates for remote.hBen Straub
Includes typedef for git_direction, and renames for GIT_DIR_[FETCH|PUSH] to GIT_DIRECTION_(\1).
2012-11-23Reset all static variables to NULL in clar's __cleanupSascha Cunz
Without this change, any failed assertion in the second (or a later) test inside a test suite has a chance of double deleting memory, resulting in a heap corruption. See #1096 for details. This leaves alone the test cases where we "just" use cl_git_sandbox_init() and cl_git_sandbox_cleanup(). These methods already take good care to not double delete a repository. Fixes #1096
2012-11-22Call git_remote_update_tips before git_remote_disconnectPhilip Kelley
2012-11-11create FETCH_HEAD specially instead of as a ref fileEdward Thomson