Custom git command to generate/update CHANGELOG from conventional commits
497
A custom git command to generate/update CHANGELOG from conventional commits
Put git-changelog in a directory present in $PATH
$ RELEASE= # put a tag here if you want a specific release
$ TARGET="${HOME}/.local/bin/git-changelog"
$ wget -O "${TARGET}" https://raw.githubusercontent.com/rockandska/git-changelog/${RELEASE:=master}/git-changelog
$ chmod +x "${TARGET}"
$ git changelog -h
$ docker run --rm -ti -v $(pwd):/git rockandska/git-changelog -h
unreleased section$ git changelog
$ docker run --rm -ti -v $(pwd):/git rockandska/git-changelog
1.0.0 section$ git changelog -n 1.0.0
docker run --rm -ti -v $(pwd):/git rockandska/git-changelog -n 1.0.0
Content type
Image
Digest
Size
12.2 MB
Last updated
almost 5 years ago
docker pull rockandska/git-changelog