Back to Git Cliff

Binary releases

website/docs/installation/binary-releases.md

2.13.11.2 KB
Original Source

Binary releases

See the available binaries for different operating systems/architectures from the releases page.

Release tarballs are signed with the following PGP key: 1D2D410A741137EBC544826F4A92FA17B6619297

Linux

  1. Download the latest binary from releases section and pick between glibc or musl-libc binary.

  2. To download the package compiled with glibc:

bash
# version="1.0.0"
wget "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-x86_64-unknown-linux-gnu.tar.gz"
  1. To download the package compiled with musl-libc:
bash
# version="1.0.0"
wget "https://github.com/orhun/git-cliff/releases/download/v${version}/git-cliff-${version}-x86_64-unknown-linux-musl.tar.gz"
  1. Extract the files:
bash
tar -xvzf git-cliff-*.tar.gz
  1. Enter the folder:
bash
cd "git-cliff-${version}"
  1. Run the binary:
bash
./git-cliff
  1. Move binary to /usr/local/bin/ for running it from the terminal using git-cliff command.