diff options
author | Andy Whitcroft <apw@shadowen.org> | 2007-11-09 23:32:25 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-09 21:14:10 -0800 |
commit | 94c89ba662e964c544fdb171dc8dd33f95b97942 (patch) | |
tree | 2a212d2d9ead2df95b715693d6341a4cd4bcb984 /transport.h | |
parent | 28b9d6e548322755bbdb24c28a493862f61b1eba (diff) | |
download | git-94c89ba662e964c544fdb171dc8dd33f95b97942.tar.gz |
git-push: plumb in --mirror mode
Plumb in the --mirror mode for git-push.
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r-- | transport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/transport.h b/transport.h index d27f5629d2..7f337d2f0f 100644 --- a/transport.h +++ b/transport.h @@ -30,6 +30,7 @@ struct transport { #define TRANSPORT_PUSH_ALL 1 #define TRANSPORT_PUSH_FORCE 2 #define TRANSPORT_PUSH_DRY_RUN 4 +#define TRANSPORT_PUSH_MIRROR 8 /* Returns a transport suitable for the url */ struct transport *transport_get(struct remote *, const char *); |