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

Joel Grunbaum
2021-08-31 91849229d535bc15f7bc165afcf2c0f963db9909
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