Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryorah <yoram.harmelin@gmail.com>2013-04-25 17:26:39 +0400
committernulltoken <emeric.fermas@gmail.com>2013-05-03 22:22:42 +0400
commitefb3ecc3545706c533511c1f875836d2a7a0e820 (patch)
tree98b44bcd520f69e2dede76831e0ef10555931231 /LibGit2Sharp/RemoteCollection.cs
parent92048f90048e9a29049a53460b4545436a57445f (diff)
Update libgit2 binaries to b641c00
https://github.com/libgit2/libgit2/compare/08283cb...b641c00
Diffstat (limited to 'LibGit2Sharp/RemoteCollection.cs')
-rw-r--r--LibGit2Sharp/RemoteCollection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/RemoteCollection.cs b/LibGit2Sharp/RemoteCollection.cs
index bd5efb09..05715fb7 100644
--- a/LibGit2Sharp/RemoteCollection.cs
+++ b/LibGit2Sharp/RemoteCollection.cs
@@ -103,7 +103,7 @@ namespace LibGit2Sharp
using (RemoteSafeHandle handle = Proxy.git_remote_create(repository.Handle, name, url))
{
- Proxy.git_remote_set_fetchspec(handle, fetchRefSpec);
+ Proxy.git_remote_add_fetch(handle, fetchRefSpec);
Proxy.git_remote_save(handle);
return Remote.BuildFromPtr(handle, this.repository);
}