#!/bin/sh set -e if [ $# -eq 0 ]; then echo "Usage: $0 " exit 1 fi git add -A git commit -m "$*" git push origin main