mirror of
https://github.com/flancian/garden.git
synced 2026-08-06 06:26:20 +00:00
14 lines
230 B
Bash
Executable File
14 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
# runs a useful loop.
|
|
git config pull.rebase false
|
|
cd ~/garden
|
|
while true; do
|
|
git add *md
|
|
git add journal/*md
|
|
git add assets/*
|
|
git commit -a -m 'autopushed'
|
|
git pull
|
|
git push
|
|
sleep 30
|
|
done
|