dotfiles/share/updateall/commands.d/git

9 lines
117 B
Text

if pushd ~/Git; then
for repo in *; do
pushd "$repo"
git pull
popd
done
popd
fi