1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-dotfiles/share/updateall/commands.d/git

11 lines
127 B
Text
Raw Normal View History

#!/bin/sh
if pushd ~/Git; then
for repo in *; do
pushd "$repo"
git pull
popd
done
popd
2023-04-13 00:16:36 +02:00
fi