How to run pijul git

I’m new to Pijul and installed using cargo install pijul --version "~1.0.0-beta"

But I don’t see the git subcommand:

duncan@ateji:pijul % pijul --version
pijul 1.0.0-beta.2
duncan@ateji:pijul % pijul git      
No such subcommand: "git"

I’m running this on macOS on an M1 machine.

Hi!

You need to install pijul with the git feature enabled, like this:
cargo install pijul --version "~1.0.0-beta" --features git

1 Like