@@ -19,7 +19,7 @@ import (
19
19
const Usage = `usage: git-sizer [OPTS]
20
20
21
21
-v, --verbose report all statistics, whether concerning or not
22
- --threshold threshold minimum level of concern (i.e., number of stars)
22
+ --threshold THRESHOLD minimum level of concern (i.e., number of stars)
23
23
that should be reported. Default:
24
24
'--threshold=1'.
25
25
--critical only report critical statistics
@@ -43,18 +43,20 @@ const Usage = `usage: git-sizer [OPTS]
43
43
--branches process branches
44
44
--tags process tags
45
45
--remotes process remote refs
46
- --include prefix process references with the specified prefix
46
+ --include PREFIX process references with the specified PREFIX
47
47
(e.g., '--include=refs/remotes/origin')
48
- --include-regexp pattern process references matching the specified
48
+ --include-regexp REGEXP process references matching the specified
49
49
regular expression (e.g.,
50
50
'--include-regexp=refs/tags/release-.*')
51
- --exclude prefix don't process references with the specified
52
- prefix (e.g., '--exclude=refs/notes')
53
- --exclude-regexp pattern don't process references matching the specified
51
+ --exclude PREFIX don't process references with the specified
52
+ PREFIX (e.g., '--exclude=refs/notes')
53
+ --exclude-regexp REGEXP don't process references matching the specified
54
54
regular expression
55
55
--show-refs show which refs are being included/excluded
56
56
57
- Regular expression patterns must match the full reference name.
57
+ Prefixes must match at a boundary; for example 'refs/foo' matches
58
+ 'refs/foo' and 'refs/foo/bar' but not 'refs/foobar'. Regular
59
+ expression patterns must match the full reference name.
58
60
59
61
`
60
62
0 commit comments