Add git-pull-all

This commit is contained in:
Heretic 2025-05-29 15:33:19 -05:00 committed by GitHub
parent ced065bbcf
commit 8e9a4c3979
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
linux/git-pull-all.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Description: Git Pull all local directories and subdirectories
# Date: 2/1/2025
# Git Pull All Local Directories/Subdirectories
sudo find . -mindepth 1 -maxdepth 1 -type d -print -exec git -C {} pull \;