We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a git repository with remote origin.
repository = new Repository(repositoryRootPath); var remote = repository.Network.Remotes["origin"]; IEnumerable refSpecs = remote.FetchRefSpecs.Select(x => x.Specification).ToList(); Commands.Fetch(repository, remote.Name, refSpecs, new FetchOptions(), "ok");
I expect it to run through.
error: NativeMethods.git_remote_fetch(remote, ref array.Array, fetchOptions, logMessage); returns non zero
0.31.0/2.0.323
4,8
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reproduction steps
I have a git repository with remote origin.
repository = new Repository(repositoryRootPath);
var remote = repository.Network.Remotes["origin"];
IEnumerable refSpecs = remote.FetchRefSpecs.Select(x => x.Specification).ToList();
Commands.Fetch(repository, remote.Name, refSpecs, new FetchOptions(), "ok");
Expected behavior
I expect it to run through.
Actual behavior
error:
NativeMethods.git_remote_fetch(remote, ref array.Array, fetchOptions, logMessage);
returns non zero
Version of LibGit2Sharp (release number or SHA1)
0.31.0/2.0.323
Operating system(s) tested; .NET runtime tested
4,8
The text was updated successfully, but these errors were encountered: