Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.81 KB

File metadata and controls

48 lines (41 loc) · 1.81 KB

GitNapse Installation and Uninstallation

Contents

Install (All Platforms)

  • Requirement: Rust toolchain installed (cargo, rustc).
cargo install --path .
gitnapse --help

Remote Installation

For remote install/uninstall automation on Linux, macOS, and Windows (curl/wget/PowerShell), see docs/REMOTE_INSTALLATION.md.

Uninstall Linux

cargo uninstall gitnapse
rm -rf ~/.config/GitNapse ~/.cache/GitNapse

Uninstall macOS

cargo uninstall gitnapse
rm -rf ~/.config/GitNapse ~/.cache/GitNapse

Uninstall WSL

Run inside your selected WSL distribution.

cargo uninstall gitnapse
rm -rf ~/.config/GitNapse ~/.cache/GitNapse

Uninstall Windows (PowerShell)

cargo uninstall gitnapse
Remove-Item -Recurse -Force "$env:APPDATA\GitNapse" -ErrorAction SilentlyContinue
Remove-Item -Recurse -Force "$env:LOCALAPPDATA\GitNapse" -ErrorAction SilentlyContinue