1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pywws-data-falkensee/cron_commit.sh

11 lines
112 B
Bash
Executable File

#!/bin/sh
NOW=`date +%c`
cd `dirname $0`
git add -A
git commit -m "Autocommit $NOW"
git push
cd - >/dev/null