adding git pull for subdirectories

This commit is contained in:
2026-03-13 15:32:41 +00:00
parent 74a761bee3
commit 3ee3bb092d

10
sh/pull_all Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
for dir in */; do
if [ -d "$dir/.git" ]; then
echo "Pulling in $dir..."
git -C "$dir" pull
echo ""
fi
done