Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 939 Bytes

File metadata and controls

50 lines (34 loc) · 939 Bytes
title Installation
description Install gitkit with the quick installer, cargo, or from GitHub Releases.
order 2

Installation

Quick install (recommended)

Linux / macOS:

curl -fsSL https://raw.githubusercontent.com/UniverLab/gitkit/main/scripts/install.sh | sh

Windows (PowerShell):

irm https://raw.githubusercontent.com/UniverLab/gitkit/main/scripts/install.ps1 | iex

Via cargo

cargo install gitkit

Available on crates.io.

GitHub Releases

Precompiled binaries for Linux x86_64, macOS x86_64/ARM64 and Windows x86_64 are published on the Releases page.

Uninstall

Linux / macOS:

rm -f ~/.local/bin/gitkit
rm -rf ~/.gitkit/   # saved builds (optional)

Windows (PowerShell):

Remove-Item "$env:LOCALAPPDATA\gitkit\gitkit.exe" -Force