Skip to content

Installation

Pre-built Binaries

Download the latest release for your platform from GitHub Releases.

  1. Extract the archive.
  2. Add the binary to your PATH.

Linux / macOS:

bash
curl -fsSL https://github.com/muhammad-fiaz/gitx/raw/main/install.sh | sh

Windows (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.ps1

Windows (CMD):

cmd
git clone https://github.com/muhammad-fiaz/gitx
cd gitx
.\build.bat

Linux / macOS:

bash
git clone https://github.com/muhammad-fiaz/gitx
cd gitx
./install.sh

Alternatively, you can use Cargo directly:

bash
cargo install --path .

Released under the GPL-3.0 License.