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