Skip to content

Instantly share code, notes, and snippets.

View mikelaaron's full-sized avatar

Michael Aaron mikelaaron

View GitHub Profile
@mikelaaron
mikelaaron / git-status-all.sh
Last active January 27, 2026 04:00
Bash script to check git status across all repos in a folder at once. Shows uncommitted changes, untracked files, commits to push/pull, and sync status. Run gitstatus from anywhere.
#!/bin/bash
# Git Status Overview for All Repos
#
# After saving this file, run these commands to set it up:
# chmod +x /path/to/git-status-all.sh
# echo 'alias gitstatus="/path/to/git-status-all.sh /your/projects/folder"' >> ~/.zshrc
# source ~/.zshrc
BOLD='\033[1m' RED='\033[0;31m' GREEN='\033[0;32m'