Post-Local sync at 2025-06-14T02:06:31Z

This commit is contained in:
Mark Randall Havens 2025-06-13 21:06:32 -05:00
parent d2547cdba0
commit 2da6d2b612
4 changed files with 41 additions and 0 deletions

31
bin/gitfield-status-audit.sh Executable file
View file

@ -0,0 +1,31 @@
#!/bin/bash
echo "🔍 Scanning all Git repositories under $(pwd)..."
echo
for dir in */; do
if [ -d "$dir/.git" ]; then
cd "$dir" || continue
echo "📂 Repository: $dir"
# Check for uncommitted changes
if ! git diff --quiet || ! git diff --cached --quiet; then
echo " ⚠️ Uncommitted changes present"
fi
# Check for unpushed commits
UPSTREAM=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null)
if [ -n "$UPSTREAM" ]; then
AHEAD=$(git rev-list --count HEAD.."$UPSTREAM")
BEHIND=$(git rev-list --count "$UPSTREAM"..HEAD)
if [ "$BEHIND" -gt 0 ]; then
echo " 🚀 Commits pending to push: $BEHIND"
fi
else
echo " ❓ No upstream tracking branch set"
fi
cd .. || continue
echo
fi
done