libgit2sharp
libgit2sharp copied to clipboard
Git + .NET = ❤
### Reproduction steps Clone Azure Dev Ops repository. ### Expected behavior Created folder contains only .git folder and the repository content. ### Actual behavior Created folder contains .git folder, the...
After the release of 0.26.2, several 0.27 [prerelease nuget versions have been published](https://www.nuget.org/packages/LibGit2Sharp/0.27.0-preview-0182). However, I cannot find a changelog for them on the nuget site, nor on the release site...
there is a date for new version? thanks
I have a patch file and I want to load it into memory as `Patch` or so. https://stackoverflow.com/questions/25085434/is-it-possible-to-apply-a-patch-using-libgit2sharp says libgit2 didn't have patch files parsing ready. I see it's there...
You are opening a _bug report_ against the LibGit2Sharp project: we use GitHub Issues for tracking bug reports and feature requests. If you have a question about an API or...
Hi, the release version 2.0.315 of LibGit2Sharp.NativeBinaries is ready. When we can expect the release version 0.27.0 of LibGit2Sharp?
### Reproduction steps The `sourceBranch` and `targetBranch` has a `commonAncestorCommit` with an existing file `Foo.cs`. A lot of (let's say: 3000) other files exist too. The `sourceBranch` contains one single...
### Reproduction steps ```csharp using var repository = new Repository(_options.LocalRepositoryPath); const string message = "message"; var commitOptions = new CommitOptions() { AllowEmptyCommit = false, PrettifyMessage = true, }; var authorSignature...
When you push a local branch that does not exist on the remote (using the refspec overload), libgit2sharp automatically creates a tracking branch, but it does not set up the...