17 lines
297 B
Text
17 lines
297 B
Text
|
#!/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
|