Skip to content

Latest commit

 

History

History
41 lines (21 loc) · 562 Bytes

GITHELP.md

File metadata and controls

41 lines (21 loc) · 562 Bytes

GIT Help

Marker : feature-keybord branch

Noch eine Änderung

Strategie

First steps

git init git config --global user.email "[email protected]" git config --global user.name "Your Name"

Branch

Neuen Branch erstellen

Branch neu erstellen :

git branch

Lokalen Branch zum Remote hinzufügen :

git push --set-upstream origin

Branch Wechsel

git checkout

Daten synchronisieren

Daten vom Remote zum Lokal Branch synchronisieren

git pull

Daten vom Lokal zum Remote Branch synchronisieren

git push