7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
git add -A
|
|
git commit -m "auto commit at $(date '+%Y-%m-%d %H:%M:%S')"
|
|
git push
|