nsbin/sync-all-repos

19 lines
334 B
Text
Raw Normal View History

2017-11-25 20:08:58 +01:00
#!/bin/sh
set -e
for repo in ~/.ctt \
2020-05-12 17:32:08 +02:00
~/bin \
~/vcs/notes \
2017-12-24 00:13:41 +01:00
~/vcs/nico-dot-cdist \
2020-05-12 17:32:08 +02:00
~/vcs/mindmap \
2017-11-25 20:08:58 +01:00
~/.password-store \
; do
2017-11-25 23:03:30 +01:00
echo $repo
2017-11-25 20:08:58 +01:00
cd $repo
git add .
2017-11-25 23:03:30 +01:00
git commit -m "updated by $0" || true
2017-11-25 20:08:58 +01:00
git pull
git push
done