mirror of
https://github.com/Heretic312/devsecops-wrappers.git
synced 2025-12-17 09:46:01 +00:00
7 lines
221 B
Bash
7 lines
221 B
Bash
#!/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 \;
|