We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa390bc commit 1f7c563Copy full SHA for 1f7c563
src/bin/analyzer/options.rs
@@ -3,6 +3,7 @@ use structopt::StructOpt;
3
#[derive(StructOpt, Debug)]
4
#[structopt(name = "codeprints-analyzer")]
5
pub enum Command {
6
+ /// Run the analyzer and generate json summary of contributions
7
Run {
8
/// Limit the commits output to ones with author header lines
9
/// that match the specified pattern.
@@ -24,5 +25,6 @@ pub enum Command {
24
25
#[structopt(alias = "since", long)]
26
after: Option<String>,
27
},
28
+ /// Merge all codeprints*.json to one file named codeprints_merged.json
29
Merge {},
30
}
0 commit comments