diff --git a/sync-all-repos b/sync-all-repos index 930cc9a..a0cb304 100755 --- a/sync-all-repos +++ b/sync-all-repos @@ -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