https://github.com/orhun/git-cliff Skip to content Sign up * Why GitHub? Features - + Mobile - + Actions - + Codespaces - + Packages - + Security - + Code review - + Issues - + Integrations - + GitHub Sponsors - + Customer stories- * Team * Enterprise * Explore + Explore GitHub - Learn and contribute + Topics - + Collections - + Trending - + Learning Lab - + Open source guides - Connect with others + The ReadME Project - + Events - + Community forum - + GitHub Education - + GitHub Stars program - * Marketplace * Pricing Plans - + Compare plans - + Contact Sales - + Education - [ ] * # In this repository All GitHub | Jump to | * No suggested jump to results * # In this repository All GitHub | Jump to | * # In this user All GitHub | Jump to | * # In this repository All GitHub | Jump to | Sign in Sign up {{ message }} orhun / git-cliff * Sponsor Sponsor orhun/git-cliff * Notifications * Star 1.1k * Fork 8 A highly customizable Changelog Generator that follows Conventional Commit specifications [?][?] GPL-3.0 License 1.1k stars 8 forks Star Notifications * Code * Issues 0 * Pull requests 1 * Actions * Security * Insights More * Code * Issues * Pull requests * Actions * Security * Insights main Switch branches/tags [ ] Branches Tags Could not load branches Nothing to show {{ refName }} default View all branches Could not load tags Nothing to show {{ refName }} default View all tags 1 branch 35 tags Code * Clone HTTPS GitHub CLI [https://github.com/o] Use Git or checkout with SVN using the web URL. [gh repo clone orhun/] Work fast with our official CLI. Learn more. * Open with GitHub Desktop * Download ZIP Launching GitHub Desktop If nothing happens, download GitHub Desktop and try again. Go back Launching GitHub Desktop If nothing happens, download GitHub Desktop and try again. Go back Launching Xcode If nothing happens, download Xcode and try again. Go back Launching Visual Studio Code Your codespace will open once ready. There was a problem preparing your codespace, please try again. Latest commit @orhun orhun docs(readme): update installation instructions for Arch Linux ... 8fb18b7 Sep 4, 2021 docs(readme): update installation instructions for Arch Linux 8fb18b7 Git stats * 263 commits Files Permalink Failed to load latest commit information. Type Name Latest commit message Commit time .github fix(cd): change the config file location for crates.io release Aug 20, 2021 config chore(config): move cliff.toml to config/ Aug 17, 2021 examples fix(template): use 7 digits for short SHA Aug 2, 2021 git-cliff-core chore(release): prepare for v0.2.6 Sep 4, 2021 git-cliff chore(release): prepare for v0.2.6 Sep 4, 2021 .dockerignore chore(docker): add Dockerfile Jun 11, 2021 .editorconfig chore(project): update .editorconfig about shell scripts Jun 21, 2021 .gitignore chore(git): remove etc directory from .gitignore Aug 7, 2021 CHANGELOG.md chore(release): prepare for v0.2.6 Sep 4, 2021 CODE_OF_CONDUCT.md chore(project): rename May 29, 2021 CONTRIBUTING.md docs(contributing): add CONTRIBUTING.md Jun 28, 2021 Cargo.lock chore(release): prepare for v0.2.6 Sep 4, 2021 Cargo.toml chore(project): rename May 29, 2021 Dockerfile chore(docker): bump cargo-chef version in Dockerfile Sep 4, 2021 LICENSE Initial commit May 10, 2021 README.md docs(readme): update installation instructions for Arch Linux Sep 4, 2021 RELEASE.md chore(release): set the new version in release script Jun 29, 2021 codecov.yml chore(project): add codecov.yml Jun 7, 2021 release.sh chore(release): show the committed changes before creating a tag Aug 20, 2021 rustfmt.toml chore(fmt): remove normalize_comments from rustfmt.toml Jun 4, 2021 View code [ ] About Installation From crates.io Using pacman Binary Releases Usage Command Line Arguments Examples Docker GitHub Action Configuration File changelog header body trim footer git conventional_commits commit_parsers filter_commits tag_pattern skip_tags Templating Context Conventional Commits Breaking Changes Non-Conventional Commits Syntax Examples Basic Changelog [unreleased] Features [1.0.1] - 2021-07-18 Miscellaneous Tasks Refactor [1.0.0] - 2021-07-18 Bug Fixes Documentation Features Detailed Changelog [unreleased] Features [1.0.1] - 2021-07-18 Miscellaneous Tasks Refactor [1.0.0] - 2021-07-18 Bug Fixes Documentation Features Scoped Changelog [unreleased] Features Cache Config [1.0.1] - 2021-07-18 Miscellaneous Tasks Release Refactor Parser [1.0.0] - 2021-07-18 Bug Fixes Args Documentation Example Project Features Parser Keep a Changelog Changelog [unreleased] Added Changed [1.0.1] - 2021-07-18 Added Changed [1.0.0] - 2021-07-18 Added Fixed Similar Projects License Copyright README.md [121790699-8808dc80-cbea-11eb-8ab6-2fb6b08] [6874747073] [6874747073] [6874747073] [6874747073] [6874747073] [6874747073] [6874747073] About git-cliff can generate changelog files from the Git history by utilizing conventional commits as well as regex-powered custom parsers. The changelog template can be customized with a configuration file to match the desired format. preview Table of Contents * About * Installation + From crates.io + Using pacman + Binary Releases * Usage + Command Line Arguments + Examples * Docker * GitHub Action * Configuration File + changelog o header o body o trim o footer + git o conventional_commits o commit_parsers o filter_commits o tag_pattern o skip_tags * Templating + Context o Conventional Commits # Breaking Changes o Non-Conventional Commits + Syntax + Examples o Basic o Detailed o Scoped o Keep a Changelog * Similar Projects * License * Copyright Installation From crates.io git-cliff can be installed from crates.io: cargo install git-cliff Using pacman If you are using Arch Linux, git-cliff can be installed from the community repository: pacman -S git-cliff Binary Releases See the available binaries for different operating systems/ architectures from the releases page. Usage Command Line Arguments git-cliff [FLAGS] [OPTIONS] [RANGE] Flags: -v, --verbose Increases the logging verbosity -i, --init Writes the default configuration file to cliff.toml -l, --latest Processes the commits starting from the latest tag -u, --unreleased Processes the commits that do not belong to a tag -h, --help Prints help information -V, --version Prints version information Options: -c, --config Sets the configuration file [env: CONFIG=] [default: cliff.toml] -w, --workdir Sets the working directory [env: WORKDIR=] -r, --repository Sets the repository to parse commits from [env: REPOSITORY=] -p, --prepend Prepends entries to the given changelog file [env: PREPEND=] -o, --output Writes output to the given file [env: OUTPUT=] -t, --tag Sets the tag for the latest version [env: TAG=] -b, --body