This tool crawls current and children directories for git repos, and checks if there are: - untracked files - uncommitted changes - unpushed commits - unpulled commits - added files (git index) - deleted files - renamed files
Show all repos:
$ mrh
foo (untracked files, uncommitted changes, unpushed commits)
bar
baz (untracked files)
qux
Only show those repos that are pending action:
$ mrh --pending
foo (untracked files, uncommitted changes, unpushed commits)
baz (untracked files)
Ignore untracked files in results:
$ mrh --pending --ignore-untracked
foo (uncommitted changes, unpushed commits)
Following is the most easy way to install the tool (assuming you have the Rust toolchain installed):
cargo install mrh