updated by /home/nico/bin/sync-all-repos
This commit is contained in:
parent
b33dd1d3c7
commit
59fba9128f
1 changed files with 10 additions and 0 deletions
|
@ -25,3 +25,13 @@ for repo in ~/.ctt \
|
||||||
git pull
|
git pull
|
||||||
git push
|
git push
|
||||||
done
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue