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-03-06git_revert_opts -> git_revert_optionsoptions-namesBen Straub
2014-02-06More merge.conflictstyle fixesBen Straub
2014-02-04Add reflog parameters to git_resetBen Straub
2014-01-21Remove the "merge none" flagEdward Thomson
The "merge none" (don't automerge) flag was only to aide in merge trivial tests. We can easily determine whether merge trivial resulted in a trivial merge or an automerge by examining the REUC after automerge has completed.
2014-01-21merge_file should use more aggressive levelsEdward Thomson
The default merge_file level was XDL_MERGE_MINIMAL, which will produce conflicts where there should not be in the case where both sides were changed identically. Change the defaults to be more aggressive (XDL_MERGE_ZEALOUS) which will more aggressively compress non-conflicts. This matches git.git's defaults. Increase testing around reverting a previously reverted commit to illustrate this problem.
2013-12-03Reorder var decls in revert testEdward Thomson
Oh, MSVC.
2013-12-03Bare naked merge and rebaseEdward Thomson
2013-12-03Introduce git_revert to revert a single commitEdward Thomson