CLI tool to check the Git status of multiple projects

https://news.ycombinator.com/rss Hits: 9
Summary

A fast, cross-platform CLI tool to check the git status of multiple projects organized by categories. Run check-projects to see which of your projects have uncommitted changes, are ahead of remote, or have other git status indicators. Output Example x mozilla * M firefox ✱ ✚ thunderbird ✔ godot x gamedev ⬆ flying-ones * M avindi Git Status Symbols ✔ - Clean (synced with remote) - Clean (synced with remote) ⬆ - Ahead of remote - Ahead of remote ⬆⬆ - Diverged from remote - Diverged from remote * M - Modified files - Modified files * D - Deleted files - Deleted files ✱ ✚ - Untracked files - Untracked files ❌ - Error Features Multi-category organization : Group your projects by team, client, or any category : Group your projects by team, client, or any category Nested project discovery : Automatically scan nested folder structures : Automatically scan nested folder structures Concurrent scanning : Fast parallel git status checks : Fast parallel git status checks Flexible configuration : YAML-based config with local and global support : YAML-based config with local and global support Smart filtering : Hide clean projects by default, show only what needs attention : Hide clean projects by default, show only what needs attention Cross-platform: Single binary for macOS, Linux, and Windows Installation Quick Install (macOS/Linux) curl -fsSL https://raw.githubusercontent.com/uralys/check-projects/main/install.sh | sh This will download the latest release and install it to ~/.local/bin/check-projects . show manual Installation Download the latest release for your platform from GitHub Releases Extract and install: # macOS/Linux tar -xzf check-projects- * .tar.gz chmod +x check-projects sudo mv check-projects /usr/local/bin/ # Or install to user directory (no sudo required) mkdir -p ~ /.local/bin mv check-projects ~ /.local/bin/ # Add ~/.local/bin to your PATH if not already done # Windows (PowerShell as Administrator) Move-Item check-projects.exe C:\Windows\System32\ From Sourc...

First seen: 2025-11-20 06:02

Last seen: 2025-11-20 14:04