This commit is contained in:
2026-06-08 18:37:03 +03:00
parent 1da5cfd4e4
commit 1815c0401a
2 changed files with 18 additions and 0 deletions

11
commit Executable file
View File

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