An open API service indexing awesome lists of open source software.

https://github.com/dvberkel/git-log-analysis

Analysis git log's for certain keywords and reports about it.
https://github.com/dvberkel/git-log-analysis

Last synced: 2 months ago
JSON representation

Analysis git log's for certain keywords and reports about it.

Awesome Lists containing this project

README

        

Git Log Analysis
================

This project provides an executable perl script which reports on the
various commit conventions.

Conventions
-----------

When I write my commit message is try to specify the kind of
commit. For example if the commit is a fix I will within brackets.

The following keywords are used

* REFACTORING
* FIX

Others may be present

Output
------

The output that is to be expected is a listing of the number of times
a certain keyword is present in the a commit.

For example

FIX...............5
REFACTOR..........51
total commits.....37

Usage
-----

You can you this tool in the following manner

> git log | ./analyse.pl

This produces the following output on commit b7ef2baf8155a5727cf9d09c838929e2cf5c668d

FIX...............1
REFACTOR..........3
total commits.....9