2007-09-11 05:03:00 +02:00
|
|
|
#ifndef FETCH_PACK_H
|
|
|
|
#define FETCH_PACK_H
|
|
|
|
|
2012-09-09 08:19:40 +02:00
|
|
|
#include "string-list.h"
|
2013-07-08 22:56:53 +02:00
|
|
|
#include "run-command.h"
|
2012-09-09 08:19:40 +02:00
|
|
|
|
2013-12-05 14:02:39 +01:00
|
|
|
struct sha1_array;
|
|
|
|
|
2011-03-16 08:08:34 +01:00
|
|
|
struct fetch_pack_args {
|
2007-09-11 05:03:00 +02:00
|
|
|
const char *uploadpack;
|
|
|
|
int unpacklimit;
|
|
|
|
int depth;
|
2013-12-05 14:02:38 +01:00
|
|
|
unsigned quiet:1;
|
|
|
|
unsigned keep_pack:1;
|
|
|
|
unsigned lock_pack:1;
|
|
|
|
unsigned use_thin_pack:1;
|
|
|
|
unsigned fetch_all:1;
|
|
|
|
unsigned stdin_refs:1;
|
2014-01-17 21:21:14 +01:00
|
|
|
unsigned diag_url:1;
|
2013-12-05 14:02:38 +01:00
|
|
|
unsigned verbose:1;
|
|
|
|
unsigned no_progress:1;
|
|
|
|
unsigned include_tag:1;
|
|
|
|
unsigned stateless_rpc:1;
|
|
|
|
unsigned check_self_contained_and_connected:1;
|
|
|
|
unsigned self_contained_and_connected:1;
|
2013-12-05 14:02:39 +01:00
|
|
|
unsigned cloning:1;
|
2013-12-05 14:02:42 +01:00
|
|
|
unsigned update_shallow:1;
|
2007-09-11 05:03:00 +02:00
|
|
|
};
|
|
|
|
|
2012-09-09 08:19:43 +02:00
|
|
|
/*
|
2013-01-29 23:02:15 +01:00
|
|
|
* sought represents remote references that should be updated from.
|
|
|
|
* On return, the names that were found on the remote will have been
|
|
|
|
* marked as such.
|
2012-09-09 08:19:43 +02:00
|
|
|
*/
|
2007-09-19 06:49:35 +02:00
|
|
|
struct ref *fetch_pack(struct fetch_pack_args *args,
|
2012-09-09 08:19:39 +02:00
|
|
|
int fd[], struct child_process *conn,
|
|
|
|
const struct ref *ref,
|
|
|
|
const char *dest,
|
2013-01-29 23:02:15 +01:00
|
|
|
struct ref **sought,
|
|
|
|
int nr_sought,
|
2013-12-05 14:02:39 +01:00
|
|
|
struct sha1_array *shallow,
|
2012-09-09 08:19:39 +02:00
|
|
|
char **pack_lockfile);
|
2007-09-11 05:03:00 +02:00
|
|
|
|
|
|
|
#endif
|