git status – zeigt den Arbeitsstand.
git status
git add . – alle Änderungen vormerken.
git add .
git commit -m "Nachricht" – Änderungen ins lokale Repo übernehmen.
git commit -m "Nachricht"
git push – Änderungen zu GitHub hochladen.
git push
git pull – Änderungen von GitHub holen (z. B. auf dem VPS).
git pull