Skip to main content
 ____ ___ ____ ___ _____
|  _ \_ _/ ___|_ _|_   _|
| |_) | | |  _ | |  | |
|  __/| | |_| || |  | |
|_|  |___\____|___| |_|

Python 3 pypi_version License: MIT Code style: black

A terminal UI for Git — short commands and multi-repo management.

interaction demo

Quick Start

$ pip install -U pigit

$ pigit                 # launch the TUI
$ pigit cmd -l          # list short commands
$ pigit repo add ~/dev/foo ~/dev/bar
$ pigit repo ll         # summary across repos
$ pigit open            # open remote in browser

Installation

Source

git clone https://github.com/zlj-zz/pigit.git --depth=1
cd pigit
make install
# or on Windows
python setup.py install

Development (editable install)

pip install -e ".[dev]"

TUI Mode

Pigit's primary interface is a terminal UI. Simply run pigit with no arguments to enter it.

panel what you can do
Status stage / unstage / discard / ignore files; inline diff; copy path (Y); stash list; file preview on wide terminals
Diff stage individual hunks; browse file history (v, p/n)
Commit inline subject/body editor with lint feedback
History undo the last action, browse and reverse multiple steps
Branch checkout, create, rename, delete branches; scope to a sub-directory (R)

Key bindings

key action panel
j / k, / navigate lists all
Enter select / open all
q / Esc back / quit all
? help all
I inspect selection (top sheet; j/k scroll, Esc/I close) Status, Stash, Branch, Commit
a / d / i stage / discard / ignore Status
c inline commit editor Status
c cherry-pick onto HEAD Commit
o show another branch’s log Commit
Enter show that branch’s commits (no checkout) Branch
H toggle hunk staging Diff
u / U undo / undo stack all
z / Z stash push / pop Status

Press ? for the full per-panel list. Every key is remappable via [app.keybindings] — see Keybindings.

For operations that are cumbersome on the command line—such as staging individual hunks, browsing commit history with inline graphs, or resolving merge conflicts—the TUI is the recommended workflow.

[!NOTE] The TUI runs on macOS / Linux and requires an interactive terminal (both stdin and stdout must be TTYs). It will not launch in CI pipelines, scripts, or when piped. On Windows, only the CLI sub-commands are available.

CLI Usage

For scripting, CI, or quick tasks, Pigit exposes sub-commands and flags.

usage: pigit [-h] [-i] [-f] [-r] [-v] [-c [PATH]] [--create-ignore TYPE]
             [--init [SHELL]] [--create-config] [--with-keybindings]
             {cmd,repo,open} ...

Pigit TUI is called automatically if no parameters are followed.

cmd

Short aliases for common git operations.

demo display

Discovery

  • pigit cmd -l — list all short commands with help text and underlying git lines.
  • pigit cmd -s <query> / --search <query> — filter by keyword.
  • pigit cmd -t <category> — filter by category (branch, commit, index, etc.).
  • pigit cmd -p / --pick — interactive picker (TTY only): j/k to move, Enter to run, / to filter, q to quit.

Example output from pigit cmd -l:

These are short commands that can replace git operations:
    b        lists, creates, renames, and deletes branches.
             git branch
    bc       creates a new branch.
             git checkout -b
    bl       lists branches and their commits.
             git branch -vv
    bd       delete a local branch by name.
             git branch -d
......

repo

Manage multiple repositories at once.

demo display
demo display
demo display
  • pigit repo add <path> — add repo(s) to the managed list.
  • pigit repo rm <name> — remove repo(s).
  • pigit repo ll — display summary of all repos.
  • pigit repo cd <name> — print the path of a managed repo.
  • pigit repo cd -p — open the interactive picker to choose a repo.
  • pigit repo cd --output-file <path> — write the selected path to a file instead (for scripts/CI).
  • pigit repo fetch|pull|push [<name>...] — run git operations across repos in parallel.

open

Open the current repository's remote URL in a web browser.

pigit open              # open current branch
pigit open <branch>     # open specific branch
pigit open -c           # open at current commit
pigit open -i <number>  # open a specific issue
pigit open -p           # print URL instead of opening

Other flags

flag description
-i, --information show repository info
-f, --config display local git config
-r, --report show pigit description
-c [PATH], --count [PATH] code statistics (table or simple format)
--create-ignore TYPE generate a .gitignore template
--create-config create a config file at ~/.config/pigit/pigit.toml
--with-keybindings with --create-config, dump commented keybinding defaults into the config

Shell Integration

pigit --init generates shell completion scripts and a pigit wrapper function.

[!TIP] Run --init once: it sets up both tab-completion and the repo cd auto-cd wrapper. You do not need a separate completion-only step.

Add it to your shell configuration:

# ~/.bashrc or ~/.zshrc
eval "$(pigit --init)"

Supports bash, zsh, and fish. If no shell is specified, it auto-detects from $SHELL.

Auto cd with repo cd

After sourcing the init script, pigit repo cd -p automatically changes your shell's working directory when you pick a repo. The wrapper intercepts pigit repo cd, runs the picker, and cds into the selected path.

For scripts and CI, use --output-file <path> to write the selected directory to a file instead.

Configuration

Create a template config with pigit --create-config. The config lives at:

  • Linux/macOS: ~/.config/pigit/pigit.toml
  • Windows: %USERPROFILE%\pigit\pigit.toml

See examples/pigit.toml for a full template.

section key type default description
[cmd] display bool True show original git command
[cmd] recommend bool True suggest corrections for wrong commands
[counter] use_gitignore bool True respect .gitignore when counting
[counter] show_invalid bool False show files that cannot be counted
[counter] show_icon bool True show file icons (requires Nerd Font)
[counter] format str table output format: table or simple
[info] git_config_format str table git config display: table or normal
[info] repo_include list ["remote", "branch", "log"] sections to show in repo info
[repo] auto_append bool True auto-add current repo to managed list
[log] debug bool False debug mode
[log] output bool False print logs to terminal
[app] repo_observe bool True observe git metadata and refresh panels when the repo changes
[app] observe_worktree bool True also observe worktree files for Status list updates
[app] word_diff bool True enable word-diff in the diff viewer
[app] status_view str tree status panel default view: flat or tree
[app] diff_preview_default bool True show Status/Stash side diff preview on large screens (Ctrl+p on Status/Stash)
[app] log_graph_default bool True show Branch log-graph preview on large screens (Ctrl+p on Branch)
[app] commit_report_default bool True show the Commit contribution-graph report below the list when the panel is taller than 19 rows (Ctrl+r toggles)
[app] show_footer bool True show the footer key-hint bar

Keybindings

Remap app actions with an [app.keybindings] section. Keys are semantic strings ("c", "down", "ctrl c", " " for space); use an array for multiple keys.

To list every configurable action with its default key, regenerate the config with:

pigit --create-config --with-keybindings

This appends a commented [app.keybindings] block to the generated file (existing overrides are preserved as active lines). For example:

[app.keybindings.branch]
checkout = "C"  # default: "c"
# next = ["j", "down"]  # Navigate branch list

Actions are scoped by namespace: universal, status, diff, rebase, branch, commit, stash, recent.

Custom Commands

Define aliases and scripts in pigit.cmds.toml inside the pigit home directory.

Aliases

[cmd_new.aliases]
mybl = "bl"
mylog = "log --oneline --graph"

Scripts

[cmd_new.scripts.myscript]
steps = ["status", "log --oneline"]
help = "Show status then log"
category = "script"

# concise form for simple step lists
[cmd_new.scripts]
quick-check = ["status", "diff --cached"]

User-defined entries appear in pigit cmd -l, search, and --pick with [alias] or [script] prefixes.

Features

TUI

  • Session history / undo — one-key reversal (u) and a browsable undo stack (U).
  • Hunk staging — stage or unstage individual hunks directly in the diff viewer (H).
  • Inline commit editor — subject/body fields with lint bar inside the TUI.
  • Stash management — push, pop, and drop stashes from the status panel.
  • Auto refresh — periodic background refresh of the active panel while the TUI is idle.
  • Syntax highlighting — diff and file-history views tokenize source code by language.
  • Adaptive layout — side-by-side preview panel on large terminals.
  • Inspector sheetI opens a frozen selection snapshot as a top overlay (not a layout column).

CLI

  • Short commands — aliases like pigit cmd st for git status --short.
  • Command correction — suggests the right command when you typo.
  • Code statistics — count lines/files by type with table or simple output.
  • .gitignore templates — generate from common types.
  • Quick open remote — open repo/commit/issue in browser.

Multi-repo & shell

  • Multi-repo managementrepo sub-commands for bulk operations across projects.
  • Shell completion — bash/zsh/fish with pigit --init.
  • Auto cd — shell wrapper enables pigit repo cd -p to change directory after picking.

Customization

  • Custom keybindings — remap any app action via [app.keybindings]; dump defaults with --create-config --with-keybindings.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pigit-2.0.0.tar.gz (446.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pigit-2.0.0-py3-none-any.whl (569.2 kB view details)

Uploaded Python 3

File details

Details for the file pigit-2.0.0.tar.gz.

File metadata

  • Download URL: pigit-2.0.0.tar.gz
  • Upload date:
  • Size: 446.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pigit-2.0.0.tar.gz
Algorithm Hash digest
SHA256 277111228d73ff67cbf0ceec5ff96960d276192c2216466398cd67c9584f1169
MD5 24a35ff80e0f6c109f6b7595dd026c44
BLAKE2b-256 de24b58e9f95ccc05d5db3eabeff7c1c661390257cc1c07154ed8968be647079

See more details on using hashes here.

Provenance

The following attestation bundles were made for pigit-2.0.0.tar.gz:

Publisher: ci.yaml on zlj-zz/pigit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pigit-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: pigit-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 569.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pigit-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b9ce9b8bd7e8ad9747eb5840e338fc317f476d0799cb6ca7c5ff87d674d2a212
MD5 889aeaca3d64a8c8abc5a49c4c33b696
BLAKE2b-256 1ca24c22e86c6f452bdcf792570c056b1ccb80a74afabb5a8e5d0ef149607a33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pigit-2.0.0-py3-none-any.whl:

Publisher: ci.yaml on zlj-zz/pigit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page