Simple terminal tool of Git.
Project description
PIGIT
A terminal UI for Git, plus short command aliases and multi-repo management. Run pigit with no arguments to launch the TUI, or use sub-commands for quick one-off tasks.
Quick Start
pip install -U pigit
pigit # Launch TUI
Installation
Pip
pip install -U pigit
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.
The TUI provides interactive panels for status, branch list, commit log, diff viewer, and more. Use j/k or arrow keys to navigate, Enter to select, and q or Esc to go back. Press ? at any time to see available key bindings.
Status panel — stage/unstage files with a, discard with d, ignore with i, and view inline diffs with Enter. Y copies the selected file path to the clipboard. A stash list sits at the bottom (z to push, Z to pop). On wide terminals a file-preview splits the view.
Diff viewer — press H to toggle hunk mode and stage/unstage individual hunks inline. In commit diffs, press v to view the file at that commit and p/n to browse older/newer revisions.
Commit editor — press c in the status panel to open an inline subject/body editor with lint feedback; Ctrl+Enter submits.
Session history — press u to undo the last action, or U to open a sheet and reverse multiple steps.
Branch panel — checkout, create, rename, and delete branches; R scopes to a repo sub-directory.
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 requires an interactive terminal (both stdin and stdout must be TTYs). It will not launch in CI pipelines, scripts, or when piped.
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]
{cmd,repo,open} ...
Pigit TUI is called automatically if no parameters are followed.
cmd
Short aliases for common git operations.
Discovery
pigit cmd -l— list all short commands with help text and underlyinggitlines.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/kto move,Enterto run,/to filter,qto 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.
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 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 |
Shell Integration
pigit --init generates shell completion scripts and a pigit wrapper function.
[!TIP] Run
--initonce: it sets up both tab-completion and therepo cdauto-cdwrapper. 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.
Alias
Add to your shell profile for faster access:
if type pigit >/dev/null 2>&1; then
alias pg="pigit"
alias gr="pigit repo"
fi
Windows (PowerShell)
set-alias pg pigit
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 |
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-first workflow — interactive panels for status, branch, commit log, diff, and more.
- Session history / undo — one-key reversal (
u) and a browsable undo stack (U). - Inline commit editor — subject/body fields with lint bar inside the TUI.
- Hunk staging — stage or unstage individual hunks directly in the diff viewer (
H). - Stash management — push, pop, and drop stashes from the status panel.
- Adaptive layout — side-by-side preview panel on large terminals.
- Short commands — aliases like
pigit cmd stforgit status --short. - Command correction — suggests the right command when you typo.
- Multi-repo management —
reposub-commands for bulk operations across projects. - Shell completion — bash/zsh/fish with
pigit --init. - Auto
cd— shell wrapper enablespigit repo cd -pto change directory after picking. - Code statistics — count lines/files by type with table or simple output.
.gitignoretemplates — generate from common types.- Quick open remote — open repo/commit/issue in browser.
- Custom aliases & scripts — extend via TOML config.
LICENSE: MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pigit-1.8.14.tar.gz.
File metadata
- Download URL: pigit-1.8.14.tar.gz
- Upload date:
- Size: 325.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d3db6ea7ec5350ff40e8cd114229b9b4082034cdaf0133319477a2f38e556dd
|
|
| MD5 |
193627b3e85a927d7739b93f636a78e0
|
|
| BLAKE2b-256 |
2da57f9fc6aa647abc55ec0bddee930eceb70450aea40ba8943728f0baa0ff5b
|
Provenance
The following attestation bundles were made for pigit-1.8.14.tar.gz:
Publisher:
ci.yaml on zlj-zz/pigit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pigit-1.8.14.tar.gz -
Subject digest:
0d3db6ea7ec5350ff40e8cd114229b9b4082034cdaf0133319477a2f38e556dd - Sigstore transparency entry: 1707905764
- Sigstore integration time:
-
Permalink:
zlj-zz/pigit@ce4db653482115b0a062bf66ad77da4d1f9c2624 -
Branch / Tag:
refs/tags/v1.8.14 - Owner: https://github.com/zlj-zz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@ce4db653482115b0a062bf66ad77da4d1f9c2624 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pigit-1.8.14-py3-none-any.whl.
File metadata
- Download URL: pigit-1.8.14-py3-none-any.whl
- Upload date:
- Size: 409.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2277e9d0d0738c5ead6e06a1c41167b8ab55c1f6f7327d1765188f9558a18994
|
|
| MD5 |
e4583cda8a35ab68f1a1b57cf7b1e7bf
|
|
| BLAKE2b-256 |
b36d07b3fe07d75e0eb5e9c4fc5bfff8b16a3340b552013626ffacdbaa62ffef
|
Provenance
The following attestation bundles were made for pigit-1.8.14-py3-none-any.whl:
Publisher:
ci.yaml on zlj-zz/pigit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pigit-1.8.14-py3-none-any.whl -
Subject digest:
2277e9d0d0738c5ead6e06a1c41167b8ab55c1f6f7327d1765188f9558a18994 - Sigstore transparency entry: 1707905769
- Sigstore integration time:
-
Permalink:
zlj-zz/pigit@ce4db653482115b0a062bf66ad77da4d1f9c2624 -
Branch / Tag:
refs/tags/v1.8.14 - Owner: https://github.com/zlj-zz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@ce4db653482115b0a062bf66ad77da4d1f9c2624 -
Trigger Event:
push
-
Statement type: