summaryrefslogtreecommitdiff
path: root/transport.h
diff options
context:
space:
mode:
authorLarry D'Anna <larry@elder-gods.org>2009-06-23 01:10:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-06-28 05:26:58 (GMT)
commit1965ff744a7e4cdefcc467991182b779f3c9d0e8 (patch)
tree8e33d618c136bbd758b621f6f0b30f23c1a1f321 /transport.h
parent4f2b15ce88b70dd9e269517a9903864393ca873b (diff)
downloadgit-1965ff744a7e4cdefcc467991182b779f3c9d0e8.zip
git-1965ff744a7e4cdefcc467991182b779f3c9d0e8.tar.gz
git-1965ff744a7e4cdefcc467991182b779f3c9d0e8.tar.bz2
add --porcelain option to git-push
If --porcelain is used git-push will produce machine-readable output. The output status line for each ref will be tab-separated and sent to stdout instead of stderr. The full symbolic names of the refs will be given. For example $ git push --dry-run --porcelain master :foobar 2>/dev/null \ | perl -pe 's/\t/ TAB /g' = TAB refs/heads/master:refs/heads/master TAB [up to date] - TAB :refs/heads/foobar TAB [deleted] Signed-off-by: Larry D'Anna <larry@elder-gods.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r--transport.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/transport.h b/transport.h
index 27bfc52..51b5397 100644
--- a/transport.h
+++ b/transport.h
@@ -35,6 +35,7 @@ struct transport {
#define TRANSPORT_PUSH_DRY_RUN 4
#define TRANSPORT_PUSH_MIRROR 8
#define TRANSPORT_PUSH_VERBOSE 16
+#define TRANSPORT_PUSH_PORCELAIN 32
/* Returns a transport suitable for the url */
struct transport *transport_get(struct remote *, const char *);