dotfiles/share/updateall/commands.d/git
2023-06-04 19:38:42 +02:00

10 lines
127 B
Bash

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