libgit2sharp
libgit2sharp copied to clipboard
Git + .NET = ❤
Address https://github.com/libgit2/libgit2sharp/issues/1778
I'm having an issue with a remote repo hosted on a BitBucket v7.21.4. The clone command works just fine, but when I try to fetch a particular branch if fails...
libgit2 < 1.7.2 is vulnerable to CVE-2024-24577 Please update libgit2 in this project
This PR adds `Depth` to `FetchOptions` allowing for shallow cloning. Since I'm new to this repo and it's complexity it's possible i've missed some key information to why this have...
### Reproduction steps var cloneOptions = new CloneOptions(); cloneOptions.CredentialsProvider = (_url, _user, _cred) => new UsernamePasswordCredentials { Username = credentials.Username, Password = credentials.Password }; Repository.Clone(repository, repofolder, CloneOptions); ### Expected behavior...
### Reproduction steps 1. Add the following test cases in `CommitFixture.cs`: ```cs [Fact] public void CanReadCommit() { var timer = new Stopwatch(); var fileContents = new ConcurrentStack(); var path =...
A proposed fix for https://github.com/libgit2/libgit2sharp/issues/1705
Is this sort of feature already implemented into libgit2sharp? This is basically git branch --merged
I am trying to pull from a github repository with the following code getting an exception "too many redirects or authentication replays". Why? If I failed to login, I expect...
Currently when we use file history, it doesn't show any merge commits, which could be misleading, as it might contain changes for this specific file. Also, the popular git providers...