From: Jeff Hostetler <jeffh...@microsoft.com>

Signed-off-by: Jeff Hostetler <jeffh...@microsoft.com>
---
 Documentation/git-rev-list.txt     |  7 ++++++-
 Documentation/rev-list-options.txt | 26 ++++++++++++++++++++++++++
 2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt
index ef22f17..d20c2ab 100644
--- a/Documentation/git-rev-list.txt
+++ b/Documentation/git-rev-list.txt
@@ -47,7 +47,12 @@ SYNOPSIS
             [ --fixed-strings | -F ]
             [ --date=<format>]
             [ [ --objects | --objects-edge | --objects-edge-aggressive ]
-              [ --unpacked ] ]
+              [ --unpacked ]
+              [ [ --filter-omit-all-blobs |
+                  --filter-omit-large-blobs=<n>[kmg] |
+                  --filter-use-sparse=<object> ]
+                [ --filter-print-manifest ] ] ]
+            [ --filter-relax ]
             [ --pretty | --header ]
             [ --bisect ]
             [ --bisect-vars ]
diff --git a/Documentation/rev-list-options.txt 
b/Documentation/rev-list-options.txt
index a02f732..e0112dd 100644
--- a/Documentation/rev-list-options.txt
+++ b/Documentation/rev-list-options.txt
@@ -693,6 +693,32 @@ ifdef::git-rev-list[]
 --unpacked::
        Only useful with `--objects`; print the object IDs that are not
        in packs.
+
+--filter-omit-all-blobs::
+       Only useful with one of the `--objects*`; omits all blobs from
+       the printed list of objects.
+
+--filter-omit-large-blobs=<n>[kmg]::
+       Only useful with one of the `--objects*`; omits blobs larger than
+       n bytes from the printed list of objects.  May optionally be
+       followed by 'k', 'm', or 'g' units.  Value may be zero.  Special
+       files (matching ".git*") are always included, regardless of size.
+
+--filter-use-sparse=<object>::
+       Only useful with one of the `--objects*`; uses a sparse-checkout
+       specification contained in the given object to filter the result
+       by omitting blobs that would not be used by the corresponding
+       sparse checkout.
+
+--filter-print-manifest::
+       Only useful with one of the above `--filter*`; prints a manifest
+       of the omitted objects.  Object IDs are prefixed with a ``~''
+       character.  The object size is printed after the ID.
+
+--filter-relax::
+       Relax consistency checking for missing blobs.  Do not warn of
+       missing blobs during normal (non-filtering) object traversal
+       following an earlier partial/narrow clone or fetch.
 endif::git-rev-list[]
 
 --no-walk[=(sorted|unsorted)]::
-- 
2.9.3

Reply via email to