mirror of
https://github.com/hnhx/librex.git
synced 2025-01-10 19:52:40 -03:00
7 lines
63 B
Bash
Executable file
7 lines
63 B
Bash
Executable file
#!/bin/sh
|
|
while true; do
|
|
git stash
|
|
git pull
|
|
sleep 60
|
|
done
|
|
|