11 lines
171 B
Bash
Executable file
11 lines
171 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
git add -A
|
|
git commit -sam "${m:-"update @ $(date)"}"
|
|
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
|
|
}
|
|
|
|
main "$@"
|