Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ It browses the repository and outputs html page with statistics.
t, [--last-commit-sha=LAST_COMMIT_SHA] # Commit where statistics should stop.
# Default: HEAD
s, [--silent], [--no-silent] # Silent mode. Don't output anything.
d, [--tree=TREE] # Tree where statistics should be generated.
d, [--tree_path=TREE] # Tree where statistics should be generated.
# Default: .
c, [--comment-string=COMMENT_STRING] # The string which is used for comments.
# Default: //
Expand Down
2 changes: 1 addition & 1 deletion lib/git_stats/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class GitStats::CLI < Thor
option :first_commit_sha, :aliases => :f, :desc => 'Commit from where statistics should start.'
option :last_commit_sha, :aliases => :t, :default => 'HEAD', :desc => 'Commit where statistics should stop.'
option :silent, :aliases => :s, :type => :boolean, :desc => 'Silent mode. Don\'t output anything.'
option :tree, :aliases => :d, :default => '.', :desc => 'Tree where statistics should be generated.'
option :tree_path, :aliases => :d, :default => '.', :desc => 'Tree where statistics should be generated.'
option :comment_string, :aliases => :c, :default => '//', :desc => 'The string which is used for comments.'

desc 'generate', 'Generates the statistics of a repository'
Expand Down