Installation
Pre-built Binaries
Download the latest release for your platform from GitHub Releases.
- Extract the archive.
- Add the binary to your
PATH.
One-Line Install (Recommended)
Linux / macOS:
bash
curl -fsSL https://github.com/muhammad-fiaz/gitx/raw/main/install.sh | shWindows (PowerShell):
powershell
iex (irm https://github.com/muhammad-fiaz/gitx/raw/main/build.ps1)From Source
Ensure you have Rust installed.
Clone the repository and run the build script for your platform. These scripts will automatically build the project and add it to your PATH.
Windows (PowerShell):
powershell
git clone https://github.com/muhammad-fiaz/gitx
cd gitx
.\build.ps1Windows (CMD):
cmd
git clone https://github.com/muhammad-fiaz/gitx
cd gitx
.\build.batLinux / macOS:
bash
git clone https://github.com/muhammad-fiaz/gitx
cd gitx
./install.shAlternatively, you can use Cargo directly:
bash
cargo install --path .