home/.local/script/gitsave

14 lines
148 B
Bash
Executable File

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