Opleiding: Git Fundamentals
Leer Git te begrijpen en gebruiken
Git is een gedistribueerd versiebeheersysteem waarmee ontwikkelaars hun code kunnen bewaren en met elkaar delen.
In deze training leer je Git op een goede manier te gebruiken. Je leert onder andere te werken met een lokale en remote repository en hoe je omgaat met merge conflicten. Ook leer je de mogelijkheden en risico's van het aanbrengen van wijzigingen in de history.
- Solve merge conflicts using multiple strategies [Apply]
- Operate on a remote GIT repository in order to collaborate with others [Apply]
- Outline version control systems and GIT in historical context. [Remember]
- Extrapolate how the .git directory works under the hood. [Understand]
- Use git status and git diff to quickly identify changes [Apply]
- Understand how to rewrite history and what the consequences are [Understand]
- Introduction
- What is source code control?
- 1st, 2nd, 3rd generation
- Git introduction
- Anatomy of a Repository
- Blobs
- Trees
- Commits
- Hashes
- Basic Snapshotting
- Checkout/switch
- Index
- Branching
- Add / commit
- Going distributed
- Introducing a remote
- Fetch / pull and push
- Branching & merging
- Create branches
- Merge kinds: fast forward, merg…