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.
- Host: GitHub
- URL: https://github.com/dvberkel/git-log-analysis
- Owner: dvberkel
- Created: 2012-02-21T13:28:17.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-02T13:12:38.000Z (over 13 years ago)
- Last Synced: 2025-02-07T23:34:20.872Z (4 months ago)
- Language: Perl
- Homepage:
- Size: 102 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
* FIXOthers 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.....37Usage
-----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