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
2019-08-08Disable build number generation in VSTSvs-8.0-v0.26-libgit2_v0.28Lluis Sanchez
2019-02-19Support net461 tagetVsevolod Kukol
2019-02-19Use libgit2 from MD if availableVsevolod Kukol
2019-02-19Enable signing when built within MonoDevelopMikayla Hutchinson
2019-02-19Introduce 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.
2019-02-19Introduce blame options for rename trackingMarius Ungureanu
2019-02-15Release 0.26Edward Thomson
2019-02-15CHANGES: update for v0.26.0Edward Thomson
2019-02-15Merge pull request #1662 from libgit2/libgit2_0_28_1Edward Thomson
Update libgit2 to v0.28.1
2019-02-15Update libgit2 to v0.28.1Edward Thomson
2019-02-06Merge pull request #1661 from libgit2/ethomson/0_28pre1Edward Thomson
Update libgit2 to v0.28.0-pre1
2019-02-06git_error: instead of giterrEdward Thomson
libgit2 has updated some function signatures for consistency, including the `giterr` family of functions which is now `git_error`.
2019-02-06git_buf: dispose instead of freeEdward Thomson
libgit2 has updated some function signatures for consistency, including `git_buf_free` which is now `git_buf_dispose`.
2019-02-06Use cdecl calling conventionsEdward Thomson
Join the rest of the world and use cdecl calling conventions to pinvoke libgit2.
2019-02-06Update native binaries to 2.0.263Edward Thomson
2018-12-25Merge pull request #1607 from itofinity/mminns/issue-1471-worktreesEdward Thomson
Add support for worktrees
2018-12-25Merge pull request #1651 from libgit2/net46Edward Thomson
Target net46 instead of net461
2018-12-25Merge pull request #1652 from jcansdale/fixes/git-diff-indent-heuristicEdward Thomson
Add support for git diff --indent-heuristic option
2018-12-20Check the same lines have been added or removedJamie Cansdale
The --indent-heuristic option should create patches that add or remove the same lines, but potentially in a different order.
2018-12-19Test for when IndentHeuristic makes no differenceJamie Cansdale
When compared files don't contain spaces, the --indent-heuristic option won't make a difference.
2018-12-19Take account of CompareOptions.IndentHeuristicJamie Cansdale
When this flag is set, enable the GIT_DIFF_INDENT_HEURISTIC option.
2018-12-19Test for IndentHeuristic Diff optionJamie Cansdale
This test is based on example from: https://github.com/git/git/blob/433860f3d0beb0c6f205290bd16cda413148f098/t/t4061-diff-indent.sh#L17
2018-12-19Add IndentHeuristic option to CompareOptionsJamie Cansdale
2018-12-19Remove unneeded DESKTOP compilation symbolBrandon Ording
2018-12-19Target net46 instead of net461Brandon Ording
2018-12-19Update LibGit2Sharp.NativeBinaries to 1.0.260Brandon Ording
2018-12-10Merge pull request #1648 from marekpetak/fixTypoBrandon Ording
Fix spelling in comments
2018-12-10Fix spelling in commentsMarek Petak
2018-12-03ssue-1471 Removed unneeded build constantsMike Minns
2018-12-03Issue-1471 undo unneeded csproj changesMike Minns
2018-11-30Merge pull request #1645 from libgit2/ethomson/nativesEdward Thomson
Update NativeBinaries to 1.0.258
2018-11-30GitConfigEntry: add include_depthEdward Thomson
Add the `include_depth` field to mirror the libgit2 addition.
2018-11-29Update NativeBinaries to 1.0.258Edward Thomson
No more zlib or libcurl dependencies.
2018-11-29Merge pull request #1639 from libgit2/ethomson/natives_0_27_7Edward Thomson
Update NativeBinaries to libgit2 0.27.7
2018-11-29NativeBinaries: cherry-pick transport fix from libgit2Edward Thomson
2018-11-07Update NativeBinaries to libgit2 0.27.7Edward Thomson
2018-11-06Issue-1471 Added code comments to WorktreeLockMike Minns
2018-11-06Issue-1471 Fix memory leak in testMike Minns
2018-11-06Merge pull request #1631 from pviotti/add-test-canheadbedetachedEdward Thomson
add CanHeadBeDetached
2018-11-06Merge pull request #1633 from arialdomartini/typoEdward Thomson
Typo: path => patch
2018-11-06Merge pull request #1636 from libgit2/update-native-binariesBrandon Ording
Update LibGit2Sharp.NativeBinaries to 1.0.245
2018-11-03Update LibGit2Sharp.NativeBinaries to 1.0.245Brandon Ording
2018-11-03Issue 1471 add .git files into the repositoryMike Minns
2018-11-03Trigger CIMike Minns
2018-11-03Typo: path => patchArialdo Martini
2018-11-02Merge pull request #1632 from libgit2/ethomson/test_resolutionEdward Thomson
Tests: copy test resources to output directory
2018-11-02Tests: copy test resources to output directoryEdward Thomson
Copy the test resources to the output directory so that we can resolve the easily, instead of trying to resolve them from the source directory.
2018-11-02Merge pull request #1630 from lupino3/fix-test-pathEdward Thomson
Fix resources path computation in test setup
2018-11-02add CanHeadBeDetached; close #1116Paolo Viotti
2018-11-02Fix resources path computation in test setupAndrea Spadaccini
The resources path is set based on the path of the current assembly. The problem is that the assembly directory has a different number of components, depending on whether the Configuration environment variable is set or not. Therefore, the previous code, that depended on the number of subdirs, would fail if there is no value for the Configuration environment variable. The new code looks for the occurrence of a well-known string in the path and bases the path of the test resources off that position. It is still pretty sub-optimal, but I think it's a bit less sub-optimal than it was. Tested in the following ways: - run dotnet test on one test from the command line on Windows; - click on "Run Test" from Visual Studio Code. Fixes #1629.