Skip to content

Commit bd2f790

Browse files
committed
Make new test pass
This commit makes Proxy.git_describe_commit pass the passed-in value of OnlyFollowFirstParent through to NativeMethods.git_describe_commit, causing the test created in the previous commit to pass.
1 parent 2b65bff commit bd2f790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibGit2Sharp/Core/Proxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ public static string git_describe_commit(
644644
Version = 1,
645645
DescribeStrategy = options.Strategy,
646646
MaxCandidatesTags = 10,
647-
OnlyFollowFirstParent = false,
647+
OnlyFollowFirstParent = options.OnlyFollowFirstParent,
648648
ShowCommitOidAsFallback = options.UseCommitIdAsFallback,
649649
};
650650

0 commit comments

Comments
 (0)