versão 1.0.9

This commit is contained in:
Gustavo Erlindo Dellajustina Demarchi
2026-06-07 14:33:44 -03:00
parent 681923d442
commit 4c2ce9de76
5 changed files with 521 additions and 260 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
echo "== Git Upload =="
git add .
echo ""
read -p "Mensagem do commit: " msg
git commit -m "$msg"
git push
echo ""
echo "Upload concluido."