dotfiles/bin/wiki-sync

12 lines
209 B
Plaintext
Raw Normal View History

2020-10-23 10:06:15 +00:00
#!/usr/bin/env bash
for wiki in ~/vimwiki/*
do
echo Synching $wiki
git -C $wiki pull --rebase --autostash
git -C $wiki add .
git -C $wiki commit -a -n -m "Auto-update"
git -C $wiki push
echo done.
done