File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -584,6 +584,9 @@ public static extern int git_repository_set_workdir(
584
584
[ DllImport ( libgit2 ) ]
585
585
public static extern int git_revwalk_hide ( RevWalkerSafeHandle walker , ref GitOid oid ) ;
586
586
587
+ [ DllImport ( libgit2 ) ]
588
+ public static extern int git_revwalk_hide_glob ( RevWalkerSafeHandle walker , [ MarshalAs ( UnmanagedType . CustomMarshaler , MarshalTypeRef = typeof ( Utf8Marshaler ) ) ] string glob ) ;
589
+
587
590
[ DllImport ( libgit2 ) ]
588
591
public static extern int git_revwalk_new ( out RevWalkerSafeHandle walker , RepositorySafeHandle repo ) ;
589
592
@@ -593,6 +596,9 @@ public static extern int git_repository_set_workdir(
593
596
[ DllImport ( libgit2 ) ]
594
597
public static extern int git_revwalk_push ( RevWalkerSafeHandle walker , ref GitOid oid ) ;
595
598
599
+ [ DllImport ( libgit2 ) ]
600
+ public static extern int git_revwalk_push_glob ( RevWalkerSafeHandle walker , [ MarshalAs ( UnmanagedType . CustomMarshaler , MarshalTypeRef = typeof ( Utf8Marshaler ) ) ] string glob ) ;
601
+
596
602
[ DllImport ( libgit2 ) ]
597
603
public static extern void git_revwalk_reset ( RevWalkerSafeHandle walker ) ;
598
604
You can’t perform that action at this time.
0 commit comments