updated by /home/nico/bin/sync-all-repos

This commit is contained in:
Nico Schottelius 2021-01-17 14:13:27 +01:00
parent b33dd1d3c7
commit 59fba9128f
1 changed files with 10 additions and 0 deletions

View File

@ -25,3 +25,13 @@ for repo in ~/.ctt \
git pull
git push
done
# Step 2: pull/push all other repos in ~/vcs/
# We cannot commit as we do not know the state, but we
# can ensure everything committed before is pushed out
for repo in ~/vcs/*; do
cd ${repo}
git pull
git push
done