Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 1.34 KB

INSTALL.md

File metadata and controls

66 lines (46 loc) · 1.34 KB

How to install

Summary

AUR

yay -S commits

Debian based

Verify what is the latest release here

wget https://github.com/alt-art/commit/releases/download/0.7.0/commit_0.7.0_amd64.deb
apt install ./commit_0.7.0_amd64.deb

Fedora

Verify what is the latest release here

wget https://github.com/alt-art/commit/releases/download/0.7.0/commit_0.7.0_x86_64.rpm
dnf install ./commit_0.7.0_x86_64.rpm

Install from source

Requires rust and cargo

git clone https://github.com/alt-art/commit.git
cd commit
cargo build --release
cp target/release/commit /usr/local/bin

Windows portable binary

Verify what is the latest release here

Add to programs on windows

mkdir "C:\Program Files\commit"
copy commit.exe "C:\Program Files\commit"

Add program to PATH on windows

setx /M PATH "%PATH%;C:\Program Files\commit"