nsbin/sync-all-repos

18 lines
321 B
Plaintext
Raw Normal View History

2017-11-25 19:08:58 +00:00
#!/bin/sh
set -e
for repo in ~/.ctt \
~/vcs/notes/ \
~/vcs/mindmap/ \
2017-11-25 22:03:30 +00:00
~/vcs/ungleich-administrativ/ \
2017-11-25 19:08:58 +00:00
~/.password-store \
; do
2017-11-25 22:03:30 +00:00
echo $repo
2017-11-25 19:08:58 +00:00
cd $repo
git add .
2017-11-25 22:03:30 +00:00
git commit -m "updated by $0" || true
2017-11-25 19:08:58 +00:00
git pull
git push
done