9 lines
94 B
Bash
9 lines
94 B
Bash
#!/bin/sh
|
|
|
|
# Add every file
|
|
git add .
|
|
git commit -m "Charge Data Uploaded $(date)"
|
|
git push
|
|
|
|
|