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
2016-03-08Remove packages.config.xs-6.0-v2Marius Ungureanu
2016-03-08Revert "GenerateNativeDll task: use file name from nuget"Marius Ungureanu
This reverts commit 0328d59c054b3957021b461b5064bf43742ad465.
2016-03-08Circumvent around nuget and signing.Marius Ungureanu
2016-03-08Introduce SSH functionalityMarius Ungureanu
Added SshAgentCredentials for querying ssh-agent, SshUserKeyCredentials for authenticating with a given ssh key-pair. Introduced UsernameQueryCredentials which returns the supported credential types. Authentication exceptions are now translated from libgit2.
2016-03-08Introduce blame options for rename trackingMarius Ungureanu
2016-03-08Add the template for changes after v0.22Carlos Martín Nieto
2016-03-07Merge commit 'refs/pull/1239/head' of github.com:libgit2/libgit2sharpCarlos Martín Nieto
2016-03-07Merge branch 'cmn/refspec-transform'Carlos Martín Nieto
2016-03-07Don't load refspecs eagerlyCarlos Martín Nieto
If the user never asks for the refspecs, we should not spend the time and memory to load them into managed memory.
2016-03-07Properly implement disposable for RemoteCarlos Martín Nieto
2016-03-07Bind the missing refspec methodsCarlos Martín Nieto
These are actions, so they need the handle which we previously made the code keep around.
2016-03-07Keep the remote and refspec handle aroundCarlos Martín Nieto
Refspecs aren't just read-only, we need the objects around for some operations (added in a later commit). The memory is owned by the remote object so we need to keep that around as well.
2016-03-07Merge branch 'cmn/delete-deprecations'Carlos Martín Nieto
2016-03-07Remove deprecated methods and typesCarlos Martín Nieto
2016-03-07Merge pull request #1271 from ethomson/023_prereleaseCarlos Martín Nieto
Bump version number to 0.23 (prerelease)
2016-03-05Bump version number to 0.23 (prerelease)Edward Thomson
2016-03-04Merge pull request #1268 from libgit2/cmn/update-v24Carlos Martín Nieto
Update to libgit2 785d8c4
2016-03-04Update to libgit2 785d8c4Carlos
2016-03-04Merge pull request #1265 from libgit2/cmn/signatureEdward Thomson
Sign libgit2sharp
2016-02-26Merge pull request #1178 from carlosmn/cmn/subtransport-ownerCarlos Martín Nieto
[RFC] Certs and Creds from a managed smart subtransport
2016-02-26Let a smart subtransport ask for credentials and show the certCarlos Martín Nieto
Implement a method for a smart subtransport implementation ask the caller for what credentials to use. The certificate callback is also here, but untested as the web requests go to the central service point instead of asking individually.
2016-02-26Create user/pass credentials from nativeCarlos Martín Nieto
2016-02-26Add serialization capabilities to the certificatesCarlos Martín Nieto
2016-02-26Add credential free and transport callbacks to NativeMethodsCarlos Martín Nieto
2016-02-26Sign libgit2sharpCarlos
2016-02-25Merge pull request #1264 from libgit2/cmn/update-libgit2Carlos Martín Nieto
Update to libgit2 68ad315
2016-02-25Update to libgit2 68ad315Carlos
2016-02-22Merge pull request #1237 from libgit2/cmn/lg2-updateEdward Thomson
Update to libgit2 6aa06b6
2016-02-18Merge pull request #1260 from niik/concurrent-filtersCarlos Martín Nieto
Fix crash when running multiple filter smudge or clean operations concurrently
2016-02-18Allow multiple concurrent filter streamsMarkus Olsson
The current implementation of filters in libgit2sharp only allows for one filter stream per type of filter at any given point in time. This switches the storage of the necessary state from instance variables on the Filter class to a dedicated state object which is tracked in a dictionary keyed on the libgit2 stream pointer.
2016-02-18Add failing test proving that filters crash when run concurrentlyMarkus Olsson
2016-02-15Merge pull request #1257 from libgit2/cmn/bump-22Carlos Martín Nieto
Update CHANGES for 0.22
2016-02-15Update CHANGES for 0.22Carlos Martín Nieto
2016-02-15Merge pull request #1258 from libgit2/cmn/pruneEdward Thomson
Expose the prune option for fetching
2016-02-15Expose the prune option for fetchingCarlos Martín Nieto
2016-02-06Merge pull request #1252 from Aimeast/vNextEdward Thomson
fix xml document
2016-02-05Merge pull request #1250 from libgit2/cmn/isolateEdward Thomson
Isolate a couple of tests which need crlf config
2016-01-04fix xml documentAimeast
2015-12-15Isolate a couple of tests which need crlf configCarlos Martín Nieto
These need a specific CRLF configuration; if we let the user's environment leak into the test, they may fail.
2015-12-15Update libgit2 to 6aa06b6Carlos Martín Nieto
2015-12-14Make user of early-stop in CanMergeWithoutConflictCarlos Martín Nieto
This stops at the first error so we can return negatives quicker.
2015-12-13Merge pull request #1243 from libgit2/cmn/deprecated-exnulltoken
Correct the deprecation path for MergeConflictException
2015-12-11Don't throw on merge conflictCarlos Martín Nieto
Instead of throwing an exception, return the merge error in the normal way, as this early failure was requested by the user and thus not an exceptional circunstance.
2015-12-10Update to libgit2 a27f31d8Carlos Martín Nieto
2015-12-08Correct the deprecation path for MergeConflictExceptionCarlos Martín Nieto
We want users to be able to have the old name in their code and catch the new type which we throw. To enable this we must switch the inheritance for the old vs new type.
2015-11-20Handle exceptions and null returns from CredentialsProvider.Chris Hescock
2015-11-13Merge pull request #1233 from golsby/1217-push-opts-custom-headersnulltoken
Add CustomHeaders member to GitPushOptions
2015-11-12Add CustomHeaders member to GitPushOptionsBrian Gillespie
Fix #1217 Matches underlying c struct for marshalling
2015-11-06Merge pull request #1221 from libgit2/ntk/xml_docnulltoken
Fix compilation warning
2015-11-04Merge pull request #1227 from tomcsmith1990/minimal-diff-algorithmnulltoken
Expose the Minimal diff algorithm