Grundfunktionen optimiert

This commit is contained in:
Oliver 2025-08-16 11:13:10 +02:00
parent 050e08859c
commit 0c84dd1a1a
No known key found for this signature in database
8 changed files with 4866 additions and 315 deletions

20
internal/git.sh Normal file
View file

@ -0,0 +1,20 @@
# Aktuellen Stand vom main/master holen
git checkout main
git pull origin main
# Neuen Feature-Branch erstellen
git checkout -b feature/neue-funktion
# Entwickeln und committen
git add .
git commit -m "Neue Funktion implementiert"
# Branch auf Remote-Repository pushen
git push -u origin feature/neue-funktion
# Alle Branches anzeigen
git branch -a
# Aktuellen Branch anzeigen
git branch --show-current