Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- contrib/related/git-related | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/contrib/related/git-related b/contrib/related/git-related index 2d47efa..702836a 100755 --- a/contrib/related/git-related +++ b/contrib/related/git-related @@ -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 -- 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