cat-file: add --batch-all-objects option
[gitweb.git] / Documentation / git-cat-file.txt
index 319ab4cb086874da5e2f153d69d8f9af1f18461e..6831b08efb4ce509258437f7db1f6115f26a4377 100644 (file)
@@ -69,6 +69,21 @@ OPTIONS
        not be combined with any other options or arguments.  See the
        section `BATCH OUTPUT` below for details.
 
+--batch-all-objects::
+       Instead of reading a list of objects on stdin, perform the
+       requested batch operation on all objects in the repository and
+       any alternate object stores (not just reachable objects).
+       Requires `--batch` or `--batch-check` be specified. Note that
+       the order of the objects is unspecified, and there may be
+       duplicate entries.
+
+--buffer::
+       Normally batch output is flushed after each object is output, so
+       that a process can interactively read and write from
+       `cat-file`. With this option, the output uses normal stdio
+       buffering; this is much more efficient when invoking
+       `--batch-check` on a large number of objects.
+
 --allow-unknown-type::
        Allow -s or -t to query broken/corrupt objects of unknown type.