libgit2sharp
libgit2sharp copied to clipboard
Git + .NET = ❤
### Reproduction steps Use the "Commands.Move" function to rename a folder in a git repository. ### Expected behavior Folder is renamed in the git repository ### Actual behavior Getting unhandled...
We are going to have to dump this library for this issue and move to using the cli instead. I figured I'd report this issue so maybe in the future...
I made a class library that uses LibGit2Sharp to perform some actions on a repository. This class library is loaded in a console app with no problem I'm trying to...
## Summary Adds support for long file paths in `CheckoutOptions` by introducing the `LongPaths` property and updating `CheckoutStrategy` with the `GIT_CHECKOUT_LONGPATHS` flag. ## Changes - New property `LongPaths` in `CheckoutOptions`....
I get **LibGit2Sharp.LibGit2SharpException:“too many redirects or authentication replays”** when I push the repository. I use username&&password in CredentialsProvider ``` using var repo = new Repository(rootPath); var options = new PushOptions...
### Reproduction steps providing valid credential to the CredentialProvider using the below snippet cloneOptions.FetchOptions.CredentialsProvider = (url, usernameFromUrl, password) => new UsernamePasswordCredentials{ Username = gitCredential.UserName, Password = gitCredential.Password }; cloneOptions.FetchOptions.CertificateCheck =...
I am using LibGit2Sharp (version 0.28.0) with a Personal Access Token to access AZURE Repository. UsernamePasswordCredentials => { Username = "pat", Password = PersonalAccessToken } CustomHeader => "Authorization: Basic {Convert.ToBase64String(Encoding.UTF8.GetBytes($":{PersonalAccessToken}"))}"...
Whenever I try to clone a public HTTPS repository on Ubuntu 15.10 I get: SSL Error: Syscall failure. On Windows no problem, anyone else having this issue?
@bording we get the error "remote authentication required but no callback set" after upgrading from 0.28 to 0.29 when connecting to a company internal azure devops server. This works great...