gait is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing git-changelog git-message git-pr git-release-notes git-wire executables

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install gait

It will make git-changelog git-message git-pr git-release-notes git-wire commands available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall gait uninstalls.

Adding gait library as a dependency

Run this command in a terminal, in your project's directory:

cargo add gait

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

gait = "0.1.3"

The gait library will be automatically available globally. Read the gait library documentation.

Back to the crate overview.