# ghk Simple GitHub helper โ push code without the complexity.
๐ Documentation ยท โฌ๏ธ Download
--- ## Install **No Rust required** โ download and run! ```bash # Linux/macOS (recommended) curl -sSL https://raw.githubusercontent.com/bymehul/ghk/main/install.sh | bash # Debian/Ubuntu wget https://github.com/bymehul/ghk/releases/latest/download/ghk_1.0.0_amd64.deb sudo dpkg -i ghk_*.deb # Fedora/RHEL sudo rpm -i https://github.com/bymehul/ghk/releases/latest/download/ghk-1.0.0-1.x86_64.rpm # Windows (PowerShell) irm https://raw.githubusercontent.com/bymehul/ghk/main/install.ps1 | iex # From source (requires Rust) cargo install --git https://github.com/bymehul/ghk ``` See [INSTALL.md](INSTALL.md) for detailed instructions. ## Quick Start ```bash ghk setup # Install git & gh if missing ghk init # Start tracking project ghk create # Create repo on GitHub ghk push # Save changes ``` ## Commands | Command | Alias | Purpose | Runs... | |---------|-------|---------|---------| | `setup` | | Install requirements | (Checks requirements) | | `init` | | Start tracking folder | `git init` | | `login` / `logout` | | GitHub auth | `gh auth login` | | `create` | | Create repo on GitHub | `gh repo create` | | `push` | `save` | Save changes | `git add -A && git commit && git push` | | `pull` | `sync` | Download changes | `git pull` | | `clone