Daniel Barkalow | 96249c0 | 2007-10-29 22:03:39 -0400 | [diff] [blame] | 1 | #ifndef SEND_PACK_H |
| 2 | #define SEND_PACK_H |
| 3 | |
| 4 | struct send_pack_args { |
| 5 | const char *receivepack; |
| 6 | unsigned verbose:1, |
| 7 | send_all:1, |
Andy Whitcroft | 28b9d6e | 2007-11-09 23:32:10 +0000 | [diff] [blame] | 8 | send_mirror:1, |
Daniel Barkalow | 96249c0 | 2007-10-29 22:03:39 -0400 | [diff] [blame] | 9 | force_update:1, |
| 10 | use_thin_pack:1, |
| 11 | dry_run:1; |
| 12 | }; |
| 13 | |
| 14 | int send_pack(struct send_pack_args *args, |
| 15 | const char *dest, struct remote *remote, |
| 16 | int nr_heads, const char **heads); |
| 17 | |
| 18 | #endif |