mirror of https://github.com/Chizi123/Scripts.git

Joel Grunbaum
2021-07-13 851c5e8ba8e65aafcfd6d03bc4883149424404ce
commit | author | age
3413cf 1 #!/bin/bash
JG 2
a85767 3 GIT_DIRECTORY=/Eduardo/git
3413cf 4
JG 5 for d in $GIT_DIRECTORY/*; do
851c5e 6     if grep -q "mirror = true" $d/config; then
JG 7     git -C "$d" remote update --prune
3413cf 8     fi
JG 9 done