18 lines
360 B
Bash
Executable file
18 lines
360 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for repo in ~/.ctt \
|
|
~/vcs/notes/ \
|
|
~/vcs/nico-dot-cdist \
|
|
~/vcs/mindmap/ \
|
|
~/vcs/ungleich-administrativ/ \
|
|
~/.password-store \
|
|
; do
|
|
echo $repo
|
|
cd $repo
|
|
git add .
|
|
git commit -m "updated by $0" || true
|
|
git pull
|
|
git push
|
|
done
|