summaryrefslogtreecommitdiff
path: root/transport.h
diff options
context:
space:
mode:
authorTay Ray Chuan <rctay89@gmail.com>2010-02-24 12:50:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-02-24 16:38:08 (GMT)
commit212cfe157effe53537ec42f156fbf7415441efd0 (patch)
treefeaaef767ce48929a131f30029e7e77d86d4fe13 /transport.h
parent9839018e874d4f15e820e1272f1ac575186c4fdc (diff)
downloadgit-212cfe157effe53537ec42f156fbf7415441efd0.zip
git-212cfe157effe53537ec42f156fbf7415441efd0.tar.gz
git-212cfe157effe53537ec42f156fbf7415441efd0.tar.bz2
transport: update flags to be in running order
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r--transport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/transport.h b/transport.h
index de2745a..d9bbabb 100644
--- a/transport.h
+++ b/transport.h
@@ -93,8 +93,8 @@ struct transport {
#define TRANSPORT_PUSH_FORCE 2
#define TRANSPORT_PUSH_DRY_RUN 4
#define TRANSPORT_PUSH_MIRROR 8
-#define TRANSPORT_PUSH_PORCELAIN 32
-#define TRANSPORT_PUSH_SET_UPSTREAM 128
+#define TRANSPORT_PUSH_PORCELAIN 16
+#define TRANSPORT_PUSH_SET_UPSTREAM 32
/* Returns a transport suitable for the url */
struct transport *transport_get(struct remote *, const char *);