Skip to content

MahaKoala/commit-entropy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Commit Entropy

Commit Entropy is a tool that can be used to calculate the entropy of changes in a source code repository. Entropy for code changes is a measure of how specific each commit was in relation to the entire code base. Very specific commits only affect a small set of files, and thus have a low entropy. Commits that touch a large number of files are much less specific and have a higher entropy as a result.

The term Entropy in this context is a simplified application of Shannon Entropy to commits in a source repository. It's simplified since we only look at the number of files changed each commit, with each file having an equal probability.

Installation

Commit Entropy currently supports Python 3.x. It can be installed using pip.

pip install commit-entropy

This will install the commit-entropy executable on your path.

If you don't have pip, you can install it manually by cloning the code and running the install script:

git clone git@github.com:GripQA/commit-entropy.git
cd commit-entropy
python setup.py install

Usage

Currently we support a single operation: exporting a csv file with the average entropy per day and a 30-day rolling average. From within a git repo:

commit-entropy csv

This will output a entropy.csv file in the current directory with the average entropy values.

Support

If you have any questions, problems, or suggestions, please submit an issue or contact us at support@grip.qa.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%