clgt
v1.0.4
Published
A tool generate git changelog file.
Downloads
14
Readme
CLGT
Change Log Git Tool
A tool generate git changelog file. It help you generate change logs for specific version, from version to version. Allow ignore some commits you don't like included in logs. History with markdown output.
Installation
npm install -g clgt
Usage
$ clgt --help
Change Log GiT
A tool generate changelog file.
Usage: clgt <option>
Options:
-d, --description Description [string]
-f, --file File ouput [string] [default: "CHANGELOG.md"]
-n, --name App Name [string]
-t, --tag Tag revision git [string]
-u, --url Url commit repository git [string] [required]
-h, --help Show this help
-r, --report Export the report
FAQ
How do I generate changelog to other file name?
Answer:
clgt -n othername.md
How do I generate changelog for a specific version?
Answer:
clgt -t v1.0
How do I generate changelog from a version to an other one?
Answer:
clgt -t v1.0..v2.0
will generate logs from after v1.0 to v2.0: logs without v1.0, include v2.0 and between them.How do I generate changelog from a version to now?
Answer:
clgt -t v1.0..
I want to ignore some commits in change logs.
Answer: Please add regex pattern in
ignore
field to configuration file.Where is the configuration file?
Answer: It's
.clgtrc
, located at root repository.