diff options
Diffstat (limited to 'fetch-pack.h')
-rw-r--r-- | fetch-pack.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fetch-pack.h b/fetch-pack.h index 8bd9c32561..7c2069c972 100644 --- a/fetch-pack.h +++ b/fetch-pack.h @@ -1,8 +1,7 @@ #ifndef FETCH_PACK_H #define FETCH_PACK_H -struct fetch_pack_args -{ +struct fetch_pack_args { const char *uploadpack; int unpacklimit; int depth; @@ -11,9 +10,11 @@ struct fetch_pack_args lock_pack:1, use_thin_pack:1, fetch_all:1, + stdin_refs:1, verbose:1, no_progress:1, - include_tag:1; + include_tag:1, + stateless_rpc:1; }; struct ref *fetch_pack(struct fetch_pack_args *args, |