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

Looking at the pace of this repository it seems due to the lack of contributors it almost appears that there is not much happening on this library and it is...

// code start LibGit2Sharp.PullOptions options = new LibGit2Sharp.PullOptions(); options.FetchOptions = new FetchOptions(); options.FetchOptions.CredentialsProvider = new CredentialsHandler( (url, usernameFromUrl, types) => new UsernamePasswordCredentials() { Username = _gitCredsUser, Password = _gitCredsPassword });...

This is potentially a feature request, if there is no way of accomplishing this using the current version of LibGit2Sharp I am trying to use LibGit2Sharp to rebase a feature...

I encountered a Bug where Checkout would not checkout the provided branch, but rather nothing (?). This somehow does not occur on my local dev-machine, but only on our pipeline...

I'd like to do something like this with libgit2sharp: ``` git diff --no-index folderA/src folderB/src > diffBetweenAandB.diff ``` which gets the diff between folderA and folderB regardless of its branch...

Hi, I have been attempting to use your very nice looking tool. Unfortunately I continiualy get different exceptions basedon OS Windows: ``` PS C:\Git\OM2\om2-github-actions> Find-GitRepository format-default: Exception has been thrown...

We have been having a problem with libgit2sharp being unable to fetch from a remote after it gets to a certain size/certain number of branches. Researching this error seems to...

apparently i am only able to checkout a branch and have it be detached.. is there a way to create a local branch with proper remote tracking info ?

I would like to make a diff between two strings with libgit2sharp. The strings hold file contents loaded elsewhere. The `diff.Compare`-methods only take blobs, and the constructors of the `Blob`class...

Hi, I've tried to search but can't find anything. I would like to avoid duplicate files with different names. To do this. I would like to search the repository if...