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

### Reproduction steps ``` var repoUrl = "https://github.com/me/repo"; var credentials = new UsernamePasswordCredentials { Username = "me", Password = "xxxx" }; var cloneOptions = new CloneOptions { CredentialsProvider = (url,...

Executing a push that is rejected by the pre-receive hook on the server side, the __OnPushStatusError__ notification is not displaying the error message returning by the remote git server, it...

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...

当前最新版本 使用MAUI时,在Android平台无法正常使用. 请问有没有支持计划.

I'm trying create a project to cloned my repository on start. But when i try do this in [setup project](https://user-images.githubusercontent.com/56931353/211194784-ea611f2d-8e60-483b-a7f8-82b12a2d137a.png) i receive this message: ![image](https://user-images.githubusercontent.com/56931353/211194591-810c34cb-e2ae-49b2-83fc-985d36963e1d.png) The code is simple, but...

I used 0.25.0-preview-0073 with Core `using (var repo = new Repository(RepositoryPath)) { // Stage the file Commands.Stage(repo, "*"); // Create the committer's signature and commit Signature author = new Signature("translator",...

### Reproduction steps Our .net 6 app uses LibGit2Sharp 0.26.2 version . Our git is in Bitbucket which accepts Kerberos via SPNEGO. It all works fine in our windows environment....

I am building an application that needs to interact with git (clone repo, create repo, push, etc.) but does not have direct access to a disk. I would like to...

FeatReq

I am not able to push large files to origin with pre-release 0.27.0-preview-0182. The same code worked with latest stable release Ending up with exception and message: "No error message...

Recently, I discovered that when I fetch a bare local repo, I often fetch a large number of git objects from remote to local (if there has some changed). However,...