Files
garden/bin/autopull
T
2022-11-25 22:38:55 +01:00

7 lines
187 B
Bash
Executable File

#!/bin/bash
# As of [[2022-11-25]] I run this as a [[systemd]] service but I call it [[autopush]] and it lives one level up in the garden :)
while true; do
git pull
sleep 60
done