Updated script

This commit is contained in:
Benjamin Rosseaux 2025-01-18 11:59:50 +01:00
commit 7bccbd4e4b

View file

@ -1,3 +1,10 @@
#!/bin/sh
git commit -am "-"
read -p "Enter commit message (or leave blank for default): " commit_message
if [ -z "$commit_message" ]; then
commit_message="More work"
fi
git commit -am "$commit_message"
git push