AllGitStatus is a Text-based user interface (TUI) application that displays the git status of all repositories found under a specified directory. Perfect for developers managing multiple repositories who need a quick, comprehensive overview of their project states without navigating into each one individually.
[Screenshot of AllGitStatus]
demo.mp4
[Demo of AllGitStatus]
- Current branch name with detached HEAD detection
- Local changes summary (staged β , unstaged π‘, untracked β)
- Stash count (π§Ί)
- Remote sync status showing commits to push (πΌ) or pull (π½)
- Stars (β), forks (π΄), and watchers (π) count
- Open issues with labels and authors (π)
- Open pull requests with draft status (π)
- Security/Dependabot alerts with severity breakdown (ππ
β οΈ π¨) - CI/CD workflow status (β ββ³)
- Repository archived status (π¦)
Run directly with uvx (no installation required):
uvx AllGitStatus
uvx AllGitStatus /path/to/projects
uvx AllGitStatus --pat ghp_your_token_here
uvx AllGitStatus --pat ~/.github_pat
export ALLGITSTATUS_PAT=ghp_your_token_or_filename_here
uvx AllGitStatus
uvx AllGitStatus --debug
Install AllGitStatus as a python package using the instructions below.
| Command Line | Scenario |
|---|---|
AllGitStatus |
To run using the current directory as the root of all git repositories. |
AllGitStatus <path to directory> |
To run using the specified directory as the root of all git repositories. |
Note that installation is not required when running AllGitStatus via uvx.
| Installation Method | Command |
|---|---|
| Via uv | uv add AllGitStatus |
| Via pip | pip install AllGitStatus |
Artifacts are signed and verified using py-minisign and the public key in the file ./minisign_key.pub.
To verify that an artifact is valid, visit the latest release and download the .minisign signature file that corresponds to the artifact, then run the following command, replacing <filename> with the name of the artifact to be verified:
uv run --with py-minisign python -c "import minisign; minisign.PublicKey.from_file('minisign_key.pub').verify_file('<filename>'); print('The file has been verified.')"Please visit Contributing and Development for information on contributing to this project.
Additional information can be found at these locations.
| Title | Document | Description |
|---|---|---|
| Code of Conduct | CODE_OF_CONDUCT.md | Information about the norms, rules, and responsibilities we adhere to when participating in this open source community. |
| Contributing | CONTRIBUTING.md | Information about contributing to this project. |
| Development | DEVELOPMENT.md | Information about development activities involved in making changes to this project. |
| Governance | GOVERNANCE.md | Information about how this project is governed. |
| Maintainers | MAINTAINERS.md | Information about individuals who maintain this project. |
| Security | SECURITY.md | Information about how to privately report security issues associated with this project. |
AllGitStatus is licensed under the MIT license.