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
2014-09-16Factor 40 and 41 constants from source.Ciro Santilli
2014-04-01No need to find merge base.Anurag Gupta
2014-03-12Fix pqueue sort boundary condition bugRussell Belfer
If the pqueue comparison fn returned just 0 or 1 (think "a<b") then the sort order of returned items could be wrong because there was a "< 0" that really needed to be "<= 0". Yikes!!!
2014-02-05revwalk: add a test for pushing all referencesCarlos Martín Nieto
This used to be broken, let's make sure we don't break this use-case.
2014-02-05revwalk: ignore wrong object type in glob pushesCarlos Martín Nieto
Pushing a whole namespace can cause us to attempt to push non-committish objects. Catch this situation and special-case it for ignoring this.
2014-02-05revwalk: add a failing test for pushing "tags"Carlos Martín Nieto
This shows that pusing a whole namespace can be problematic.
2013-11-15Rename tests-clar to testsBen Straub