Exemplo n.º 1
0
 public static extern int git_remote_new(
     out RemoteSafeHandle remote,
     RepositorySafeHandle repo,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string name,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string url,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string fetchrefspec);
Exemplo n.º 2
0
 internal static extern int git_remote_set_fetchspec(
     RemoteSafeHandle remote,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string fetchrefspec);
Exemplo n.º 3
0
 internal static extern int git_remote_update_tips(RemoteSafeHandle remote);
Exemplo n.º 4
0
 internal static extern void git_remote_set_autotag(RemoteSafeHandle remote, TagFetchMode option);
Exemplo n.º 5
0
 internal static extern int git_remote_set_callbacks(
     RemoteSafeHandle remote,
     ref GitRemoteCallbacks callbacks);
Exemplo n.º 6
0
 public static extern int git_remote_load(
     out RemoteSafeHandle remote,
     RepositorySafeHandle repo,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string name);
Exemplo n.º 7
0
 internal static extern int git_remote_get_push_refspecs(out git_strarray array, RemoteSafeHandle remote);
Exemplo n.º 8
0
 internal static extern int git_remote_ls(RemoteSafeHandle remote, git_headlist_cb headlist_cb, IntPtr payload);
Exemplo n.º 9
0
 internal static extern GitFetchSpecHandle git_remote_fetchspec(RemoteSafeHandle remote);
Exemplo n.º 10
0
 internal static extern void git_remote_disconnect(RemoteSafeHandle remote);
Exemplo n.º 11
0
 internal static extern int git_remote_download(
     RemoteSafeHandle remote,
     git_transfer_progress_callback progress_cb,
     IntPtr payload);
Exemplo n.º 12
0
 internal static extern int git_remote_create(
     out RemoteSafeHandle remote,
     RepositorySafeHandle repo,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string name,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string url);
Exemplo n.º 13
0
 internal static extern int git_remote_connect(RemoteSafeHandle remote, GitDirection direction);
Exemplo n.º 14
0
 internal static extern int git_push_new(out PushSafeHandle push, RemoteSafeHandle remote);
Exemplo n.º 15
0
 public static extern string git_remote_url(RemoteSafeHandle remote);
Exemplo n.º 16
0
 internal static extern string git_remote_name(RemoteSafeHandle remote);
Exemplo n.º 17
0
 public static extern int git_remote_save(RemoteSafeHandle remote);
Exemplo n.º 18
0
 internal static extern void git_remote_set_cred_acquire_cb(
     RemoteSafeHandle remote,
     git_cred_acquire_cb cred_acquire_cb,
     IntPtr payload);
Exemplo n.º 19
0
 public static extern IntPtr git_remote_url(RemoteSafeHandle remote);
Exemplo n.º 20
0
 public static extern int git_remote_get(
     out RemoteSafeHandle remote,
     ConfigurationSafeHandle cfg,
     [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8Marshaler))] string name);