-
vorhandenes git-repository auschecken mit
git clone [email protected]:codecentric/git-workshop-2024-10.git
odergit clone https://github.com/codecentric/git-workshop-2024-10.git
-
Grundlegende Konfiguration:
-
Eigenen Namen und Email konfigurieren:
-
git config --global user.name "Max Mustermann"
-
git config --global user.email [email protected]
-
-
Pull immer mit merge:
git config --global pull.rebase false
-
conflict resolutions merken und ggf wiederverwenden:
git config --global rerere.enabled true
-
-
Neue Datei erstellen oder ändern, dann hinzufügen:
git add <dateiname>
git add -p
"patch mode", einzelne Änderungen werden angezeigt und können hinzugefügt oder ignoriert werden
-
Commit erstellen:
-
git commit
oder -
git commit -m "Beschreibung"
-
-
Commits veröffentlichen:
-
git push
-
remote-tracking dabei aktivieren für den aktuellen Branch
git push -u origin HEAD
-
-
Änderungen von remote holen und mergen:
git pull
-
HEAD
ist das, was ich gerade lokal ausgecheckt habe
-
Notifications
You must be signed in to change notification settings - Fork 0
codecentric/git-workshop-2024-10
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published