Skip to content

Commit 5193aee

Browse files
committed
Merge branch 'ne/doc-filter-blob-limit-fix' into maint-2.43
Docfix. * ne/doc-filter-blob-limit-fix: rev-list-options: fix off-by-one in '--filter=blob:limit=<n>' explainer
2 parents 7687ca5 + 8f50984 commit 5193aee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Documentation/rev-list-options.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -947,10 +947,10 @@ ifdef::git-rev-list[]
947947
+
948948
The form '--filter=blob:none' omits all blobs.
949949
+
950-
The form '--filter=blob:limit=<n>[kmg]' omits blobs larger than n bytes
951-
or units. n may be zero. The suffixes k, m, and g can be used to name
952-
units in KiB, MiB, or GiB. For example, 'blob:limit=1k' is the same
953-
as 'blob:limit=1024'.
950+
The form '--filter=blob:limit=<n>[kmg]' omits blobs of size at least n
951+
bytes or units. n may be zero. The suffixes k, m, and g can be used
952+
to name units in KiB, MiB, or GiB. For example, 'blob:limit=1k'
953+
is the same as 'blob:limit=1024'.
954954
+
955955
The form '--filter=object:type=(tag|commit|tree|blob)' omits all objects
956956
which are not of the requested type.

0 commit comments

Comments
 (0)