Skip to content

Instantly share code, notes, and snippets.

@joesan
Created December 12, 2022 05:24
Show Gist options
  • Save joesan/61858d5d1736c81316945dccf07b9a9c to your computer and use it in GitHub Desktop.
Save joesan/61858d5d1736c81316945dccf07b9a9c to your computer and use it in GitHub Desktop.
Git Status on Subfolders Recursively
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment