mirror of
https://github.com/Gustavo-E-D-Demarchi/dicionario.git
synced 2026-07-27 16:25:46 -03:00
16 lines
158 B
Bash
Executable File
16 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "== Git Upload =="
|
|
|
|
git add .
|
|
|
|
echo ""
|
|
read -p "Mensagem do commit: " msg
|
|
|
|
git commit -m "$msg"
|
|
|
|
git push
|
|
|
|
echo ""
|
|
echo "Upload concluido."
|