Exemplo n.º 1
0
 internal static extern int git_diff_index_to_workdir(
     out DiffListSafeHandle diff,
     RepositorySafeHandle repo,
     IndexSafeHandle index,
     GitDiffOptions options);
Exemplo n.º 2
0
 internal static extern int git_index_write_tree(out GitOid treeOid, IndexSafeHandle index);
Exemplo n.º 3
0
 public static extern int git_index_find(
     IndexSafeHandle index,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string path);
Exemplo n.º 4
0
 internal static extern int git_index_has_conflicts(IndexSafeHandle index);
Exemplo n.º 5
0
 internal static extern int git_index_remove(
     IndexSafeHandle index,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(FilePathMarshaler))] FilePath path,
     int stage);
Exemplo n.º 6
0
 internal static extern UIntPtr git_index_entrycount(IndexSafeHandle index);
Exemplo n.º 7
0
 internal static extern IndexEntrySafeHandle git_index_get_byindex(IndexSafeHandle index, UIntPtr n);
Exemplo n.º 8
0
 public static extern int git_tree_create_fromindex(out GitOid treeOid, IndexSafeHandle index);
Exemplo n.º 9
0
 public static extern int git_index_add(IndexSafeHandle index, string path, int stage = 0);
Exemplo n.º 10
0
 public static extern int git_index_open_inrepo(out IndexSafeHandle index, RepositorySafeHandle repo);
Exemplo n.º 11
0
 public static extern int git_repository_index(out IndexSafeHandle index, RepositorySafeHandle repo);
Exemplo n.º 12
0
 public static extern int git_tree_create_fromindex(out GitOid treeOid, IndexSafeHandle index);
Exemplo n.º 13
0
 public static extern int git_index_remove(IndexSafeHandle index, int n);
Exemplo n.º 14
0
 public static extern IntPtr git_index_get(IndexSafeHandle index, uint n);
Exemplo n.º 15
0
 internal static extern int git_index_add(
     IndexSafeHandle index,
     GitIndexEntry entry);
Exemplo n.º 16
0
 public static extern uint git_index_entrycount(IndexSafeHandle index);
Exemplo n.º 17
0
 internal static extern int git_index_conflict_get(
     out IndexEntrySafeHandle ancestor,
     out IndexEntrySafeHandle ours,
     out IndexEntrySafeHandle theirs,
     IndexSafeHandle index,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(FilePathMarshaler))] FilePath path);
Exemplo n.º 18
0
 public static extern int git_index_find(IndexSafeHandle index, string path);
Exemplo n.º 19
0
 internal static extern int git_index_find(
     out UIntPtr pos,
     IndexSafeHandle index,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(FilePathMarshaler))] FilePath path);
Exemplo n.º 20
0
 public static extern IntPtr git_index_get(IndexSafeHandle index, uint n);
Exemplo n.º 21
0
 internal static extern IndexEntrySafeHandle git_index_get_bypath(
     IndexSafeHandle index,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(FilePathMarshaler))] FilePath path,
     int stage);
Exemplo n.º 22
0
 public static extern int git_index_remove(IndexSafeHandle index, int n);
Exemplo n.º 23
0
 internal static extern int git_index_open(
     out IndexSafeHandle index,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(FilePathMarshaler))] FilePath indexpath);
Exemplo n.º 24
0
 public static extern int git_index_write(IndexSafeHandle index);
Exemplo n.º 25
0
 internal static extern int git_index_write(IndexSafeHandle index);
Exemplo n.º 26
0
 internal static extern int git_diff_tree_to_index(
     out DiffListSafeHandle diff,
     RepositorySafeHandle repo,
     GitObjectSafeHandle oldTree,
     IndexSafeHandle index,
     GitDiffOptions options);
Exemplo n.º 27
0
 internal static extern int git_repository_index(out IndexSafeHandle index, RepositorySafeHandle repo);
Exemplo n.º 28
0
 public static extern uint git_index_entrycount(IndexSafeHandle index);