12 lines
88 B
Bash
Executable File
12 lines
88 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
git add .
|
|
|
|
git commit -m 'update,'
|
|
|
|
git push
|
|
|
|
echo "done"
|