Ensimmäinen commit

This commit is contained in:
Tontze
2026-06-08 19:44:24 +03:00
commit 8b23166a51
11 changed files with 563 additions and 0 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
# 1. Lisätään kaikki muutetut tiedostot
git add .
# 2. Kysytään commit-viestiä käyttäjältä
echo "Syötä commit-kommentti:"
read commit_viesti
# 3. Tehdään commit
git commit -m "$commit_viesti"
# 4. Pushataan muutokset
git push
echo "Päivitys valmis!"