vestasync/files/pushgit.sh

8 lines
299 B
Bash
Raw Normal View History

2023-04-16 09:34:19 +03:00
#!/usr/bin/env sh
2023-04-16 19:02:54 +03:00
export GIT_AUTHOR_NAME="vestasync_wb_$(hostname)"
export GIT_COMMITTER_NAME="vestasync_wb_$(hostname)"
2023-04-16 09:34:19 +03:00
cd /mnt/data/etc/ > /dev/null 2>&1 || true
git add . > /dev/null 2>&1 || true
git commit -m "$(date)" > /dev/null 2>&1 || true
git push -u origin master > /dev/null 2>&1 || true