Commit Graph

1 Commits

Author SHA1 Message Date
897419136a feat: add find_dirty_repos script to detect uncommitted changes in git repos
Introduce repos.finddirty.py, a Python utility that scans a specified directory for Git repositories and reports those with uncommitted changes. The script uses pathlib for filesystem traversal, subprocess to execute git status commands, and sys for argument handling. It defines is_git_repo() to check for .git directories and is_dirty() to parse git status output for "tree clean" indicators, returning None for non-repo paths. Licensed under MIT.
2025-01-06 23:08:56 +00:00