Skip to main content

A CLI that wraps common git commands with sensible defaults, safety guards, and helpful summaries.

Project description

gx

A CLI wrapper around git that adds sensible defaults, safety guards, and summaries to the workflows you run every day.

Features

  • Auto-numbered feature branches with optional worktree isolation
  • Push with dirty-tree warnings and a confirmation prompt before touching the default branch
  • Pull with automatic stash/unstash and rebase
  • Batch cleanup of merged, gone, and empty branches
  • Color-coded commit log across all branches with inline branch and tag badges
  • Repository dashboard with metadata, branches, GitHub info, and recent commits
  • Dry-run mode (-n) on every mutating command

Installation

gx requires Python 3.13 or higher.

# install via uv
uv tool install git-gx

# or install via pip
pip install git-gx

Quick Start

gx feat                  # create feat/1 from main
# ... make changes, commit ...
gx push                  # push to origin with tracking
# ... PR merged ...
gx done                  # checkout main, pull, delete feat/1

Commands

Every command supports -h for help. The mutating commands (feat, push, pull, clean, done) and log also support -v/-vv for verbosity and -n for dry-run.

gx info

Show a dashboard with panels for repository metadata, branches, working tree state, and recent commits. Running gx with no arguments inside a repo shows this dashboard.

When the gh CLI is installed and the remote is on GitHub, an additional panel shows the repo description, visibility, stars, and open PR/issue counts. Stash and worktree panels appear only when there's something to show.

gx info                  # full dashboard
gx                       # same as gx info

gx status

Two-panel view: a color-coded file tree of uncommitted changes and a table of active branches with ahead/behind counts, file metrics, and stash counts.

gx status                # both panels
gx status -F             # file tree only
gx status -b             # branch table only
gx status -a             # include inactive branches

gx log

Color-coded commit log inside a panel. Includes commits from all branches, with inline badges marking branch tips and tags. Commits ahead of your current branch render dim so you can see where you are relative to other branches.

gx log                    # last 15 commits
gx log -c 30              # last 30 commits
gx log --full             # include commit bodies
gx log --graph            # branch/merge ASCII graph

gx feat

Create a feature branch from the latest default branch. Without a name, branches are auto-numbered (feat/1, feat/2, ...), filling gaps in the sequence. The feat/ prefix is configurable.

gx feat                  # create feat/1 (or next available)
gx feat login            # create feat/login
gx feat -w               # create in a worktree at .worktrees/feat/1
gx feat -w ui            # create worktree at .worktrees/feat/ui
gx feat -L               # branch from local default (no fetch)

By default, gx feat fetches the default branch from origin first so the new branch starts at the latest remote tip. Pass -L (--local) to branch from your local default instead, which keeps any unpushed commits.

Worktree mode (-w) lets you work on multiple branches simultaneously without stashing. When the worktree directory is inside the repo, it must be listed in .gitignore.

gx push

Push the current branch to its remote tracking branch, or to origin/<branch> on first push. Tracking is set up automatically.

gx push                  # push current branch
gx push -f               # force push with --force-with-lease
gx push -t               # push commits and all tags

Safety guards:

  • Warns about uncommitted or untracked files that won't be included in the push
  • Prompts for confirmation before pushing directly to the default branch
  • Force-pushing uses --force-with-lease rather than --force, which protects against overwriting work on the remote that you haven't seen

gx pull

Fetch and rebase the current branch onto its upstream. Handles uncommitted changes automatically.

gx pull                  # pull and rebase
gx pull -v               # pull with debug output

The full sequence:

  1. Stash uncommitted changes (including untracked files)
  2. Fetch from the remote
  3. Rebase onto the upstream branch
  4. Update submodules if .gitmodules is present
  5. Restore the stash
  6. Print a summary of new commits

If a rebase conflict occurs, gx restores your stash and prints resolution steps.

gx clean

Remove branches and worktrees that are no longer needed. Fetches with --prune first, then finds branches that are:

  • merged into the default branch
  • gone (upstream tracking branch deleted on the remote)
  • empty (zero commits ahead of the default branch)
gx clean                 # interactive cleanup
gx clean -y              # skip confirmation prompt
gx clean -f              # include dirty worktrees
gx clean -n              # preview what would be removed

The current branch and any branches in the protected list (default: main, master, develop) are never touched. Worktrees with uncommitted changes are skipped unless you pass --force.

gx done

Post-merge cleanup. Switches back to the default branch, pulls the latest changes, and deletes the feature branch you were on.

gx done                  # clean up after a merged PR
gx done -f               # skip the merge-verification check
gx done -n               # preview what would happen

Before deleting, gx verifies the branch was actually merged by checking, in order: a MERGED PR state from gh, an upstream tracking branch that has been deleted on the remote, or a traditional merge commit. If none of those confirm the merge, you're prompted before deletion. Pass -f to skip the check.

If you ran gx done from a worktree, the worktree is removed first and gx prints a cd command for switching back to the main working directory.

Global Options

Flag Description
-v Debug output (shows git commands)
-vv Trace output (shows git stdout/stderr)
-n / --dry-run Preview changes without executing mutations
-h / --help Show help for any command
-V / --version Print the gx version and exit

Configuration

gx works out of the box with no configuration. To customize defaults, create ~/.config/gx/config.toml:

[branches]
prefix = "feat"                            # branch prefix for `gx feat`
protected = ["main", "master", "develop"]  # branches protected from cleanup

[worktree]
directory = ".worktrees"                   # worktree base directory

[remote]
name = "origin"                            # default remote name

Every key is optional. Only specify the ones you want to change.

Worktree directory

The worktree directory can be relative or absolute:

  • Relative paths (e.g. .worktrees) are resolved from the repo root and must be listed in .gitignore.
  • Absolute paths (e.g. ~/tmp/worktrees) are used as-is and have no .gitignore requirement.

Environment variables

Override any setting per-invocation with environment variables. These take priority over the config file.

Variable Example
GX_BRANCH_PREFIX GX_BRANCH_PREFIX=fix gx feat
GX_WORKTREE_DIRECTORY GX_WORKTREE_DIRECTORY=~/wt gx feat -w
GX_PROTECTED_BRANCHES GX_PROTECTED_BRANCHES=main,production gx clean
GX_REMOTE_NAME GX_REMOTE_NAME=upstream gx push

License

MIT

Project details


Download files

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

Source Distribution

git_gx-0.7.1.tar.gz (37.3 kB view details)

Uploaded Source

Built Distribution

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

git_gx-0.7.1-py3-none-any.whl (49.1 kB view details)

Uploaded Python 3

File details

Details for the file git_gx-0.7.1.tar.gz.

File metadata

  • Download URL: git_gx-0.7.1.tar.gz
  • Upload date:
  • Size: 37.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for git_gx-0.7.1.tar.gz
Algorithm Hash digest
SHA256 7e7e7ab754713dc49b2024dbd2a0df8a551db601a02a98d30db87f16d6b31bad
MD5 3174ff123305cb1ef7f1a4b8f2fa908a
BLAKE2b-256 66d23ed9f97edf4e04f269b5d47c6f4b356c29f0f6c617090d3a73c20ab4782b

See more details on using hashes here.

File details

Details for the file git_gx-0.7.1-py3-none-any.whl.

File metadata

  • Download URL: git_gx-0.7.1-py3-none-any.whl
  • Upload date:
  • Size: 49.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for git_gx-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 afe15a5d0a3fdab053f819b94b9b79862682b6c86054c2b28e98aefff2266748
MD5 a912eaedee18dca1289d2490ce2e10a3
BLAKE2b-256 67b4979e4837cc54c3391ce5698ca4cd24ec47e4f157ab4efbbbc3efbe3c6d65

See more details on using hashes here.

Supported by

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