aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-cat-file.txt
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2005-12-03 17:57:48 -0800
committerJunio C Hamano <junkio@cox.net>2005-12-03 23:07:17 -0800
commit7950571ad75c1c97e5e53626d8342b01b167c790 (patch)
tree02a67856e4edb0254fbaa229feec55221573822a /Documentation/git-cat-file.txt
parente40b61fb6bd2e0ed2dc4799096fcf4c828c28d6d (diff)
downloadgit-7950571ad75c1c97e5e53626d8342b01b167c790.tar.gz
A few more options for git-cat-file
This adds '-e' option to git-cat-file, to test for the existence of the object. This also cleans up the option-parsing in git-cat-file slightly. [jc: HPA version had -n option which did rev-parse --verify; the real value of this patch is the option parsing cleanup.] Signed-off-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-cat-file.txt')
-rw-r--r--Documentation/git-cat-file.txt13
1 files changed, 10 insertions, 3 deletions
diff --git a/Documentation/git-cat-file.txt b/Documentation/git-cat-file.txt
index ab4dcae21c..9a7700fa7f 100644
--- a/Documentation/git-cat-file.txt
+++ b/Documentation/git-cat-file.txt
@@ -8,7 +8,7 @@ git-cat-file - Provide content or type information for repository objects
SYNOPSIS
--------
-'git-cat-file' (-t | -s | <type>) <object>
+'git-cat-file' (-t | -s | -e | <type>) <object>
DESCRIPTION
-----------
@@ -29,6 +29,10 @@ OPTIONS
Instead of the content, show the object size identified by
<object>.
+-e::
+ Suppress all output; instead exit with zero status if <object>
+ exists and is a valid object.
+
<type>::
Typically this matches the real type of <object> but asking
for a type that can trivially be dereferenced from the given
@@ -39,8 +43,11 @@ OPTIONS
OUTPUT
------
-If '-t' is specified, one of the <type>. If '-s' is specified,
-the size of the <object> in bytes.
+If '-t' is specified, one of the <type>.
+
+If '-s' is specified, the size of the <object> in bytes.
+
+If '-e' is specified, no output.
Otherwise the raw (though uncompressed) contents of the <object> will
be returned.