home/.local/script/gitsave

12 lines
100 B
Plaintext
Raw Normal View History

2024-03-26 21:15:01 +00:00
#!/bin/sh
git add -A
if [ "$#" -ne 1 ]; then
git commit -m "a"
else
git commit -m $@
fi
git push