Getting Started
Install Gitorii and run your first commands in minutes.
Installation
One-line installer
$ curl -fsSL https://gitorii.com/install.sh | sh
Verify
$ torii --version
Initialize a repository
# New repo $ torii init # Existing directory $ torii init --path ./my-project
Creates .toriignore and syncs it to .git/info/exclude.
Basic workflow
# Check what changed $ torii status # Stage + commit $ torii save -m "feat: my first commit" # Push / pull $ torii sync --push $ torii sync --pull # Pull + push in one step $ torii sync
Clone a repository
# Shorthand $ torii clone github user/repo $ torii clone gitlab user/repo -d my-folder # Full URL also works $ torii clone git@github.com:user/repo.git
Configure platform tokens
$ torii config set auth.github_token YOUR_TOKEN $ torii config set auth.gitlab_token YOUR_TOKEN
Stored in ~/.config/torii/config.toml โ never committed.