Forwarded from Solomon Insight (Π
ΟβΟΠΌΟΠΈ.G)
40+ free vibe coding tools to use in 2026 π₯
More productive less $
Save this for later π
@solomon_insight
More productive less $
Save this for later π
@solomon_insight
β€1π₯1
#!/usr/bin/env bash
DEV_DIR="$HOME/Desktop/chaos_projects"
echo "Scanning Git repositories in: $DEV_DIR"
echo "--------------------------------------------------"
find "$DEV_DIR" -type d -name ".git" 2>/dev/null | while read gitdir; do
repo_dir=$(dirname "$gitdir")
cd "$repo_dir" || continue
repo_name=$(basename "$repo_dir")
branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
echo ""
echo "π¦ Repository: $repo_name"
echo " Path: $repo_dir"
echo " Branch: $branch"
if ! git remote get-url origin &>/dev/null; then
echo " β No remote configured"
continue
fi
git fetch origin &>/dev/null
if [ -n "$(git status --porcelain)" ]; then
echo " β Uncommitted changes"
fi
ahead=$(git rev-list --count @{u}..HEAD 2>/dev/null)
behind=$(git rev-list --count HEAD..@{u} 2>/dev/null)
if [ "$ahead" -gt 0 ]; then
echo " β¬ $ahead commit(s) NOT pushed"
fi
if [ "$behind" -gt 0 ]; then
echo " β¬ $behind commit(s) behind remote"
fi
if [ "$ahead" -eq 0 ] && [ "$behind" -eq 0 ] && [ -z "$(git status --porcelain)" ]; then
echo " β Clean & fully pushed"
fi
done
echo ""
echo "Done."
What this script does:
β’ Scans all Git repos inside your projects folder
β’ Detects current branch
β’ Checks for uncommitted changes
β’ Shows commits ahead/behind origin
β’ Tells you which repos are clean & fully pushed
β€2
Forwarded from Josad Software Jobs
Full Stack | OpenClaw AI automation Expert
Company: AfriDev
#Linkedin #full #stack #openclaw #ai #automation #expert #josad #tech_jobs
View on source
@josad_software
Company: AfriDev
Company DescriptionAfriDev is a leading software development and digital innovation company dedicated to designing scalable, intelligent, and user focused solutions for businesses and startups across Africa and the global market. Specializing in full-stack web and mobile development, AI-powered applications, automation tools, and modern cloud systems, AfriDev integrates technical expertise with creative design and agile project management. The companys mission is to help clients innovate, grow, ...view detail
#Linkedin #full #stack #openclaw #ai #automation #expert #josad #tech_jobs
View on source
@josad_software