[DllImport(libgit2)]
public static extern int git_reference_listall(git_strarray* array, RepositorySafeHandle repo, GitReferenceType flags);
[DllImport(libgit2)]
public static extern int git_tag_list(git_strarray* array, RepositorySafeHandle repo);
[DllImport(libgit2)]
public static extern void git_strarray_free(git_strarray* array);
Consider changing "git_starray*" "out git_strarray". This will make libgit2sharp run on mono 2.8+.
Consider changing "git_starray*" "out git_strarray". This will make libgit2sharp run on mono 2.8+.