7 lines
158 B
Bash
Executable File
7 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
MYDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$MYDIR"
|
|
|
|
git add . -A ; git commit -m "how not to commit"; git push |