|
15 | 15 | .WithExample("setup"); |
16 | 16 |
|
17 | 17 | config.AddCommand<FsCommand>("fs") |
18 | | - .WithDescription("Display basic repository filesystem info such as files count, files size, etc.") |
| 18 | + .WithDescription("Display basic repository filesystem info such as dirs/files count, files size, etc.") |
19 | 19 | .WithExample("fs") |
20 | 20 | .WithExample("fs", "--path", "path/to/repository"); |
21 | 21 |
|
22 | 22 | config.AddCommand<LanguagesCommand>("langs") |
23 | | - .WithDescription("Display detailed repository languages statistics") |
| 23 | + .WithDescription("Display detailed repository languages statistic") |
24 | 24 | .WithExample("langs") |
25 | 25 | .WithExample("langs", "--path", "path/to/repository") |
26 | 26 | .WithExample("langs", "--ignore-extra-langs") |
27 | 27 | .WithExample("langs", "--fetch-latest"); |
28 | 28 |
|
29 | 29 | config.AddCommand<TreeCommand>("tree") |
30 | | - .WithDescription("Shows repository filesystem tree") |
| 30 | + .WithDescription("Show repository filesystem tree") |
31 | 31 | .WithExample("tree") |
32 | 32 | .WithExample("tree", "--path", "path/to/repository"); |
33 | 33 |
|
34 | 34 | config.AddCommand<GitCommand>("git") |
35 | | - .WithDescription("Shows repository git info") |
| 35 | + .WithDescription("Show repository git info") |
36 | 36 | .WithExample("git") |
37 | 37 | .WithExample("git", "--path", "path/to/repository") |
38 | 38 | .WithExample("git", "--branch", "branchname"); |
|
0 commit comments