Popularity
4.1
Declining
Activity
3.8
-
12
2
0

Monthly Downloads: 10
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Unclassified    
Latest version: v0.0.2

git-freq alternatives and similar packages

Based on the "Unclassified" category.
Alternatively, view git-freq alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of git-freq or a related project?

Add another 'Unclassified' Package

README

git-freq Circle CICoverage Status

A Git subcommand to show total addition, deletion per file

Installation

$ stack install git-freq

Usage

Just hit git freq in the repository. Total addition, deletion per file will be shown as a csv in following format.

file name, addition, deletion

See git freq --help for more options.

Example

Lens at 2587bb01

$ git freq | head
src/Control/Lens.hs,5365,5263
src/Control/Lens/Fold.hs,5885,3471
src/Control/Lens/Internal.hs,4205,4123
src/Control/Lens/Type.hs,3493,2869
src/Control/Lens/TH.hs,3530,2066
src/Control/Lens/Setter.hs,3097,1846
src/Control/Lens/Internal/Zipper.hs,2432,2436
src/Control/Lens/Traversal.hs,2846,1628
src/Control/Exception/Lens.hs,2646,1697
src/Control/Lens/Plated.hs,2395,1715

How to run tests

$ stack test

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request