7 lines
85 B
Bash
7 lines
85 B
Bash
|
#!/opt/homebrew/bin/bash
|
||
|
|
||
|
env=`date -I`
|
||
|
git add .
|
||
|
git commit -m "$env - $1"
|
||
|
git push
|