libgit2sharp icon indicating copy to clipboard operation
libgit2sharp copied to clipboard

Git + .NET = ❤

Results 255 libgit2sharp issues
Sort by recently updated
recently updated
newest added

add to ```Native``` methods: ```git_cred_ssh_key_new``` and wrap it or open ```GitCredentialHandler``` in ```Credentials``` class: ``` public abstract class Credentials { protected internal abstract int GitCredentialHandler(out IntPtr cred); } ``` remove...

I think there is an error in the Working Directory for a branch, particularly if a branch is associated with a WorkTree. It always shows the same path as the...

Includes nice test summaries

When you attempt to use `repository.QueryBy(string, CommitFilter)` and specify all branches as the IncludeReachableFrom parameter, a KeyNotFound exception is thrown. ### Reproduction steps Add the following test to FileHistoryFixture to...

If the line ending of only one line somewhere in the middle of a file, the file is not detected as `Dirty` by the reset method and the change is...

Addresses [Bug#1966](https://github.com/libgit2/libgit2sharp/issues/1966) Scenario: Need to create a patch file that contains binary deltas using `Diff.Compare` function. This is needed for binary files to be created/updated when calling `git apply` using...

### Reproduction steps use Diff.Compare to create a patch that contains BinaryComparisons save this patch to a file `patch.file` call git apply with the created `patch.file` ### Expected behavior 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...

### Reproduction steps have a repository with the branches - main [default] - feature/branch-name Clone the repository and add the worktree. SourceCode: ``` var cloneOptions = new CloneOptions() { CredentialsProvider...

### Reproduction steps 1. Create a repo. 2. Add some large files (>700 MB). 3. Move the large files and author a commit. 4. Attempt to clone the repo using...