Skip to content

Latest commit

 

History

History
20 lines (20 loc) · 628 Bytes

File metadata and controls

20 lines (20 loc) · 628 Bytes
layout default
title Repo aktualisieren
description Ein Repo aktualisieren

Um den aktuellen Stand vom Server zu aktualisieren:
git pull

Sollten sich lokale Änderung bestehen, welche überschrieben werden sollen:
git fetch -all
git reset --hard origin/main
git pull

Um lokale Änderungen zu behalten und dennoch aktualisierungen vom Server zu holen:
git stash
git pull
git stash pop


HomeHome

Grundkonfiguration Git Nächste Seite: Git Status