8000 Update libgit2 binaries to 65e9dc6 · GiTechLab/libgit2sharp@4b15e5c · GitHub
[go: up one dir, main page]

Skip to content

Commit 4b15e5c

Browse files
committed
Update libgit2 binaries to 65e9dc6
libgit2/libgit2@96fb6a6...65e9dc6
1 parent be589ef commit 4b15e5c

14 files changed

+7
-7
lines changed
862 KB
Binary file not shown.
4.52 MB
Binary file not shown.
-857 KB
Binary file not shown.
-4.5 MB
Binary file not shown.
657 KB
Binary file not shown.
4.5 MB
Binary file not shown.
-654 KB
Binary file not shown.
-4.48 MB
Binary file not shown.

LibGit2Sharp/Core/NativeDllName.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace LibGit2Sharp.Core
22
{
33
internal static class NativeDllName
44
{
5-
public const string Name = "git2-96fb6a6";
5+
public const string Name = "git2-65e9dc6";
66
}
77
}

LibGit2Sharp/Core/NativeMethods.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ internal static extern int git_repository_init_ext(
10011001
internal static extern int git_repository_is_shallow(RepositorySafeHandle repo);
10021002

10031003
[DllImport(libgit2)]
1004-
internal static extern int git_repository_merge_cleanup(RepositorySafeHandle repo);
1004+
internal static extern int git_repository_state_cleanup(RepositorySafeHandle repo);
10051005

10061006
internal delegate int git_repository_mergehead_foreach_cb(
10071007
ref GitOid oid,

LibGit2Sharp/Core/Proxy.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1838,11 +1838,11 @@ public static bool git_repository_is_shallow(RepositorySafeHandle repo)
18381838
return RepositoryStateChecker(repo, NativeMethods.git_repository_is_shallow);
18391839
}
18401840

1841-
public static void git_repository_merge_cleanup(RepositorySafeHandle repo)
1841+
public static void git_repository_state_cleanup(RepositorySafeHandle repo)
18421842
{
18431843
using (ThreadAffinity())
18441844
{
1845-
int res = NativeMethods.git_repository_merge_cleanup(repo);
1845+
int res = NativeMethods.git_repository_state_cleanup(repo);
18461846
Ensure.ZeroResult(res);
18471847
}
18481848
}

LibGit2Sharp/Repository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ public Commit Commit(string message, Signature author, Signature committer, bool
894894

895895
Commit result = ObjectDatabase.CreateCommit(message, author, committer, tree, parents, "HEAD");
896896

897-
Proxy.git_repository_merge_cleanup(handle);
897+
Proxy.git_repository_state_cleanup(handle);
898898

899899
// Insert reflog entry
900900
LogCommit(result, amendPreviousCommit, isHeadOrphaned, parents.Count() > 1);

LibGit2Sharp/libgit2_hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
96fb6a647f07e59b44551b23c000a44185cf5879
1+
65e9dc659a013817d1adb3cdc1ed43e697cfbc54

libgit2

Submodule libgit2 updated 76 files

0 commit comments

Comments
 (0)
0