diff --git a/sync-all-repos b/sync-all-repos new file mode 100755 index 0000000..b21e0ee --- /dev/null +++ b/sync-all-repos @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + +for repo in ~/.ctt \ + ~/vcs/notes/ \ + ~/vcs/ungleich-administrativ/ \ + ~/vcs/mindmap/ \ + ~/.password-store \ + ; do + cd $repo + git add . + git commit -m "updated by $0" + git pull + git push +done