Skip to main content

nanx is a developer workflow tool that accelerates your daily git operations with intuitive shortcuts and composite commands. Stop typing lengthy git commands and start shipping faster.

Quick Install

Install nanx with a single command:

curl -fsSL https://install.nanx.dev | zsh

Or if you use bash:

curl -fsSL https://install.nanx.dev | bash

Your First Commands

Once installed, try these commands in any git repository:

# Check git status
nanx r s

# Add all changes
nanx r aa

# Commit with a message
nanx r cm "your commit message"

# Push to remote
nanx r pu

Composite Workflows

Chain common operations with composite commands:

# Add all, commit, and push in one command
nanx r acgm "feat: add new feature"

# Pull and rebase
nanx r plr

Keeping Updated

nanx can update itself:

# Check for updates
nanx self update --check

# Update to latest version
nanx self update

Next Steps