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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-04Drop obsolete members after release v0.18.0nulltoken
2014-05-14Continue implementing revertJameson Miller
2014-05-14Introduce repo.Revert(commit)Ben Straub
2014-05-03Update Checkout and Merge optionsJameson Miller
Checkout methods now use CheckoutOptions Merge now takes several options: - Option to specify what is checked out for file conflicts. - Report CheckoutProgress and CheckoutNotify - Option to specify MergeFileFavor Updates for code review feedback
2014-04-15Drop obsolete members after release v0.17.0nulltoken
2014-04-10Fix xml doc ambiguous referencesnulltoken
2014-04-09Introduce new merge functionality, including Pull, merge options, andJameson Miller
merging branches. This includes a refactoring of the merge logic to support the new scenarios. New functionality includes: - Deprecate Network.Fetchheads, Repository.MergeHeads as these should be internal only. - Introduce ability to pull the configured upstream branch for the current branch - Introduce ability to merge a branch into the current branch. - Introduce options to control merge behavior. The current exposed options include whether to commit the merge commit and the allowed merge types.
2014-04-09Introduce CommitOptionsEdward Thomson
Repository#Commit (and its extension methods) now take CommitOptions. All prior methods are deprecated.
2014-04-09Introduce EmptyCommitExceptionEdward Thomson
By default, we now throw an exception when trying to commit an "empty commit" - that is, one that does not change any items. This check only applies when doing a normal commit, or an amend of a normal commit; it does not apply when performing a merge or an amend of a merge commit. This check can optionally be overridden.
2014-03-21Update libgit2 to 36a80fdBen Straub
https://github.com/libgit2/libgit2/compare/65e9dc6...36a80fd
2014-01-16Initial merge functionality.crumblycake
Bring initial merge functionality to LibGit2Sharp.
2013-12-24Drop obsolete members after release v0.15.0nulltoken
2013-11-24Introduce Repository.BlameBen Straub
2013-11-08Deprecated ResetOptions in favor ResetMode.Pavel Belousov
2013-11-07Align IRepository with public Repository membersnulltoken
2013-09-10Drop obsolete members after release v0.14nulltoken
2013-08-22Clean up trailing whitespacesnulltoken
2013-08-04Deprecate old CheckoutPaths() methodJameson Miller
2013-08-04Make CheckoutPaths() leverage CheckoutOptionsJameson Miller
2013-08-03Remove obsolete members after 0.13 releaseKeith Dahlby
2013-07-20Teach Repository to Checkout pathsJameson Miller
2013-07-01Standardize comments styleyorah
2013-06-28Rename CheckoutOptions into CheckoutModifiersnulltoken
2013-06-28Reintroduce obsolete method to avoid breaking changenulltoken
2013-06-25Teach checkout to report notificationsJameson Miller
2013-06-22Create a new repo.Checkout() overload which accepts a Commit objectyorah
2013-05-04Remove obsolete methodsyorah
2013-05-04Fix documentationnulltoken
2013-05-03Obsolete GitObjectTypenulltoken
2013-05-03Introduce ObjectTypenulltoken
2013-04-11Add Repository.SubmodulesKeith Dahlby
Includes submodule support in Index.Stage() to fix #220
2013-04-09Add ExplicitPathsOptions to Repository.Reset()yorah
2013-04-03Remove miscellaneous obsolete membersKeith Dahlby
2013-02-11Fix some issues pinpointed by Code Analysisnulltoken
2013-02-08Mark Repository.Remotes obsoletenulltoken
2013-02-08Add missing Network property to IRepository interfacenulltoken
2013-01-29Introduce Repository.MergeHeadsEdward Thomson
2012-12-14Move reset overloads to extension methodsMetalrom
2012-12-14Adds Reset(Commit commit, IEnumerable<string> paths = null) to RepositoryMetalrom
2012-12-14Adds Reset(ResetOptions resetOptions, Commit commit) method in RepositoryMetalrom
2012-12-11Fix some issues pinpointed by Code Analysisnulltoken
2012-12-06Align IRepository with public Repository membersnulltoken
2012-11-09Update working directory on CheckoutJameson Miller
2012-08-15Revparse support in Repository.LookupBen Straub
Now running lookups through git_revparse_single.
2012-06-18Add IRepository interfaceHaacked