Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- contrib/cc-cmd/git-cc-cmd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/contrib/cc-cmd/git-cc-cmd b/contrib/cc-cmd/git-cc-cmd index aa83a1a..d78759d 100755 --- a/contrib/cc-cmd/git-cc-cmd +++ b/contrib/cc-cmd/git-cc-cmd @@ -1,8 +1,25 @@ #!/usr/bin/env ruby +require 'optparse' + $since = '3-years-ago' $min_percent = 5 +begin + OptionParser.new do |opts| + opts.program_name = 'git cc-cmd' + opts.banner = 'usage: git cc-cmd [options] <file>' + + opts.on('-p', '--min-percent N', Integer, 'Minium percentage of role participation') do |v| + $min_percent = v + end + opts.on('-d', '--since DATE', 'How far back to search for relevant commits') do |v| + $since = v + end + end.parse! +rescue OptionParser::InvalidOption +end + class Commit attr_reader :id, :roles -- 1.8.2.1.790.g4588561 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html