Simple tool for release changelog reports with multiple template support.
Features
You can get usage details by running the command with the --help
argument:
sh
./git-chlog --help
```text
USAGE:
git-chlog [FLAGS] [OPTIONS]
ARGS:
FLAGS: -h, --help Prints help information -v, --verbose Verbose output -V, --version Prints version information
OPTIONS:
-c, --config
```sh
./git-chlog -d ~/github/my-app master..develop > v1.md
./git-chlog -d ~/github/my-app master..develop -t ./assets/templates/html.hbs > v1.html ```
The tool supports Handlebars templating language.
Output templates:
Simple Markdown template example looks like the following:
```text
{{#each commits as |commit|}} - {{commit.hash}} {{commit.subject}} {{/each}} ```
```sh
cargo build
cargo build --release ```
MIT License, see LICENCE for more details.