ari.lt/git.sh

14 lines
206 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2021-09-05 02:21:11 +03:00
set -e
main() {
rm -fv content/styles/config/_main.css
git add .
git commit -sam "update @ $(date)"
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
}
main "$@"