Grundfunktionen optimiert
This commit is contained in:
parent
050e08859c
commit
0c84dd1a1a
8 changed files with 4866 additions and 315 deletions
20
internal/git.sh
Normal file
20
internal/git.sh
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue