mirror of
https://github.com/tomgi/git_stats.git
synced 2024-11-10 21:27:05 +01:00
GitStats is a git repository statistics generator.
53a60c3eb8
Ignore rvm or rbenv related dotfiles. |
||
---|---|---|
bin | ||
config/locales | ||
lib | ||
spec | ||
templates | ||
.gitignore | ||
.gitmodules | ||
.rspec | ||
Gemfile | ||
git_stats.gemspec | ||
LICENSE.txt | ||
Rakefile | ||
README.md |
GitStats
GitStats is a git repository statistics generator. It browses the repository and outputs html page with statistics.
Examples
Installation
$ gem install git_stats
Usage
Generator
$ git_stats
<follow instructions on the screen>
API usage example
> repo = GitStats::GitData::Repo.new(path: '.', first_commit_sha: 'abcd1234', last_commit_sha: 'HEAD')
> repo.authors
=> [...]
> repo.commits
=> [...]
> commit.files
=> [...]
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Push to the branch (
git push origin my-new-feature
) - Create new Pull Request