← Zur Übersicht

Git – Versionskontrolle & Teamwork

Git ermöglicht nachvollziehbare Entwicklungsprozesse, Branch-Strategien und saubere Release-Zyklen.

Beispiel


git init
git add .
git commit -m "Initial commit"

git checkout -b feature/auth
git merge feature/auth

git push origin main
S