#!/bin/bash
git add -A
if [ "$#" -eq 0 ]; then
git commit -m "a"
else
array=("$@")
str="'${array[@]}'"
git commit -m "$str"
fi
git push