10 struct remote
*remote
;
15 struct ref
*remote_refs
;
17 const struct transport_ops
*ops
;
20 #define TRANSPORT_PUSH_ALL 1
21 #define TRANSPORT_PUSH_FORCE 2
23 struct transport_ops
{
25 * Returns 0 if successful, positive if the option is not
26 * recognized or is inapplicable, and negative if the option
27 * is applicable but the value is invalid.
29 int (*set_option
)(struct transport
*connection
, const char *name
,
32 int (*push
)(struct transport
*connection
, int refspec_nr
, const char **refspec
, int flags
);
34 int (*disconnect
)(struct transport
*connection
);
37 /* Returns a transport suitable for the url */
38 struct transport
*transport_get(struct remote
*remote
, const char *url
,
41 /* Transport options which apply to git:// and scp-style URLs */
43 /* The program to use on the remote side to receive a pack */
44 #define TRANS_OPT_RECEIVEPACK "receivepack"
46 /* Transfer the data as a thin pack if not null */
47 #define TRANS_OPT_THIN "thin"
50 * Returns 0 if the option was used, non-zero otherwise. Prints a
51 * message to stderr if the option is not used.
53 int transport_set_option(struct transport
*transport
, const char *name
,
56 int transport_push(struct transport
*connection
,
57 int refspec_nr
, const char **refspec
, int flags
);
59 int transport_disconnect(struct transport
*transport
);