@@ -4,11 +4,44 @@ survey.*::
4
4
background with these options.
5
5
+
6
6
--
7
+ survey.namerev::
8
+ Boolean to show/hide `git name-rev` information for each
9
+ reported commit and the containing commit of each
10
+ reported tree and blob.
7
11
verbose::
8
12
This boolean value implies the `--[no-]verbose` option.
9
13
progress::
10
14
This boolean value implies the `--[no-]progress` option.
11
15
top::
12
16
This integer value implies `--top=<N>`, specifying the
13
17
number of entries in the detail tables.
18
+ showBlobSizes::
19
+ A non-negative integer value. Requests details on the
20
+ <n> largest file blobs by size in bytes. Provides a
21
+ default value for `--blob-sizes=<n>` in
22
+ linkgit:git-survey[1].
23
+ showCommitParents::
24
+ A non-negative integer value. Requests details on the
25
+ <n> commits with the most number of parents. Provides a
26
+ default value for `--commit-parents=<n>` in
27
+ linkgit:git-survey[1].
28
+ showCommitSizes::
29
+ A non-negative integer value. Requests details on the
30
+ <n> largest commits by size in bytes. Generally, these
31
+ are the commits with the largest commit messages.
32
+ Provides a default value for `--commit-sizes=<n>` in
33
+ linkgit:git-survey[1].
34
+ showTreeEntries::
35
+ A non-negative integer value. Requests details on the
36
+ <n> trees (directories) with the most number of entries
37
+ (files and subdirectories). Provides a default value
38
+ for `--tree-entries=<n>` in linkgit:git-survey[1].
39
+ showTreeSizes::
40
+ A non-negative integer value. Requests details on the
41
+ <n> largest trees (directories) by size in bytes. This
42
+ will set will usually be equal to the
43
+ `survey.showTreeEntries` set, but may be skewed by very
44
+ long file or subdirectory entry names. Provides a
45
+ default value for `--tree-sizes=<n>` in
46
+ linkgit:git-survey[1].
14
47
--
0 commit comments