Staging
v0.8.1
https://github.com/git/git
Revision fa5b4f37e4517c7a422b227f565c9f21bdc8cc65 authored by Jeff King on 12 June 2008, 06:14:28 UTC, committed by Junio C Hamano on 13 June 2008, 05:22:36 UTC
This was introduced in 4da45bef, but never documented anywhere.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent fe22e54
Raw File
Tip revision: fa5b4f37e4517c7a422b227f565c9f21bdc8cc65 authored by Jeff King on 12 June 2008, 06:14:28 UTC
document --pretty=tformat: option
Tip revision: fa5b4f3
send-pack.h
#ifndef SEND_PACK_H
#define SEND_PACK_H

struct send_pack_args {
	const char *receivepack;
	unsigned verbose:1,
		send_all:1,
		send_mirror:1,
		force_update:1,
		use_thin_pack:1,
		dry_run:1;
};

int send_pack(struct send_pack_args *args,
	      const char *dest, struct remote *remote,
	      int nr_heads, const char **heads);

#endif
back to top