10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Add every file
|
|
cd /data/EVcharge
|
|
git add .
|
|
git commit -m "Charge Data Uploaded $(date)"
|
|
git push
|
|
|
|
|