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
-
Download the latest binary from releases section and pick between glibc or musl-libc binary.
-
To download the package compiled with
glibc
:
# 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"
- To download the package compiled with
musl-libc
:
# 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"
- Extract the files:
tar -xvzf git-cliff-*.tar.gz
- Enter the folder:
cd "git-cliff-${version}"
- Run the binary:
./git-cliff
- Move binary to
/usr/local/bin/
for running it from the terminal usinggit-cliff
command.