7 lines
68 B
Bash
Executable File
7 lines
68 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
env=`date`
|
|
git add .
|
|
git commit -m "$env"
|
|
git push
|