• Home
  • Workshops
  • Services
  • Contact
Mont-Cenis-Straße 399, Herne 44627, Germany
+49 (0) 221 9865099 0
hello@devninjas.io

Workshops

  • Docker Fundamentals
  • Kubernetes Introduction
  • CKAD Exam Prep
  • CKA Exam Prep
  • All Workshops

Services

  • Shogun · Platform Consulting
  • Mamori · Managed Retainer
  • Kensho · Platform Audit

Company

  • Contact
  • Sitemap
2026 • Coded with by DevNinjas
  • Imprint
  • Privacy
  • GTC

Introduction to Git and GitLab

Learn to work confidently with Git and GitLab in three days. From commits and branches through merge requests and code reviews to branching strategies and project management. You work hands-on in your own cloud environment.

Share via email
  • Workshop levelNo prior knowledge needed
  • Satisfied participants2340+
  • Days3
  • LanguageGerman & English
  • Workshop codeDW26

Workshop Details

What makes this workshop stand out

🎯

What you will learn and take away

After three days of Git and GitLab training you work confidently with version control and know GitLab as a platform. Here's what you take away:

  • Master Git workflows: From commits and branches through rebase and cherry-pick to reflog for error recovery
  • Collaborate in GitLab: Create merge requests, run code reviews, configure protected branches and code owners
  • Organize projects: Use issues, boards and milestones as a workflow system and wikis for documentation

All exercises run in our cloud environment. No local setup, no fuss.

Want to continue? Our GitLab CI/CD Training builds directly on this and goes deep into pipelines, runners and automated deployments.

💼

Why the investment pays off

Without consistent Git workflows and clear review processes your team wastes time on merge conflicts and unreviewed code. This Git and GitLab training changes that:

  • Ensure code quality: Standardized merge requests with approval rules and protected branches ensure only reviewed code reaches production
  • Accelerate collaboration: Your team works with code owners, merge trains and structured branching strategies instead of ad-hoc processes
  • Reduce tool costs: Issues, boards and milestones in GitLab replace separate project management tools for development

Small groups of maximum 8 participants so we can address questions from your project context.

📋

Prerequisites

Required:

  • Basic computer skills and experience with a text editor
  • Comfortable with the command line (changing directories, creating files)

Not required:

  • Git prior knowledge (covered from scratch)
  • GitLab experience
  • Programming skills

Want to continue? Our GitLab CI/CD Training builds directly on these fundamentals.

Workshop Agenda

Your Agenda at a Glance

Hands-on and structured. Every participant works in their own cloud environment. The agenda shows you what to expect each day.

Day 1: Understand Git, set it up and create your first repositories

5 topics
09:00–10:00💬 Introduction Round

Why don't professional teams simply work with shared folders or file copies? This module clarifies the problem version control solves and why Git became the industry standard. You understand the three states (Working Directory, Staging Area, Repository) and see how Git stores changes as snapshots rather than diffs. By the end you know how Git works internally and how it differs from centralized systems like SVN.

gitGit

Hands-on from the first minute: you install Git, configure user.name and user.email and create your first repository with git init. Then you go through the complete commit cycle: create files, stage with git add and save with git commit. You set up a .gitignore to exclude build artifacts and secrets, and understand why a clean .gitignore saves time from the start.

12:00–13:00🥪 Lunch Break

A repository without a readable history is barely better than a backup folder. You work with git log (and its formatting options), git diff and git show to compare changes between commits. With git tag you mark releases, and git blame shows you line by line who introduced which change and when. By the end you navigate the history confidently and find what you need quickly.

Branches are the tool that lets teams work on features in parallel without blocking each other. You create feature branches with git branch and git switch, work in isolation and bring changes together with git merge. You see the difference between fast-forward and 3-way merge in practice. Finally you deliberately provoke a merge conflict and resolve it step by step.

Local repositories alone are not enough once you work in a team. You connect your local repository to a GitLab remote, clone existing projects with git clone and synchronize changes with git push, git pull and git fetch. When is pull the right choice, when is fetch plus manual merge better? You see how remote tracking branches work and why git push --force is dangerous in a team.

16:00–16:30💭 Questions & Answers

Day 2: Use GitLab as a platform for collaboration, code reviews and project management

5 topics
09:00–10:00💭 Questions & Answers

GitLab is more than a Git server. You create projects and groups, understand the role structure from Guest to Owner and configure who can see and change what. For authentication you set up SSH Keys and Personal Access Tokens. Then you enable signed commits with SSH or GPG so GitLab marks verified commits with a green badge. In many organizations commit signing is now mandatory. Finally you see how groups inherit permissions to all contained projects, and set up a project structure that works for a team with multiple repositories.

gitlabGitLab

The Merge Request is the centerpiece of collaboration in GitLab. You create an MR from your feature branch, assign reviewers and run a code review discussion directly in the diff. Then you configure Approval Rules (how many approvals are required) and compare merge options: Merge Commit, Squash and Fast-Forward Merge. You see what a clean MR workflow looks like and why it measurably improves code quality.

12:00–13:00🥪 Lunch Break

Who is allowed to push directly to main? Ideally nobody. You configure Protected Branches that block direct pushes and only allow merges after approval. With the CODEOWNERS file you automatically assign reviewers whenever specific files or directories are affected. For teams with high merge frequency you set up Merge Trains: GitLab automatically tests merge requests against the current state of main and merges them in order, preventing conflicts from slipping through.

GitLab can replace your ticketing system. You create Issues with labels, weight and time estimates, organize them on Boards (Kanban-style) and group them into Milestones for release cycles. Then you link issues to merge requests so the associated issue closes automatically on merge. You see how labels and boards work together and where GitLab project management reaches its limits.

Project documentation belongs where the code lives. You create a Wiki directly in your GitLab project, structure it with Markdown pages and see that the wiki itself is a Git repository you can clone and edit locally. With Snippets you store and share reusable code fragments. To close: an overview of how to use GitLab Markdown with Mermaid diagrams, task lists and tables for technical documentation.

16:00–16:30💭 Questions & Answers

Day 3: Master advanced Git techniques and build your first CI/CD pipeline

5 topics
09:00–10:00💭 Questions & Answers

Three tools that change your daily Git workflow. With git rebase you integrate changes from main without extra merge commits, keeping the history linear. Interactive Rebase (git rebase -i) lets you squash, reorder or rename commits before creating a merge request. git cherry-pick selectively copies individual commits to another branch (e.g. hotfixes). And git stash parks work in progress when you need to switch branches on short notice.

Something went wrong? No reason to panic. You learn git reflog, which logs every HEAD change and lets you recover lost commits or accidentally deleted branches. Then you compare git reset in its three variants (--soft, --mixed, --hard) and understand when each variant is safe. For already pushed commits you use git revert, which undoes changes without rewriting shared history. By the end you have a repertoire that takes the fear out of Git mistakes.

12:00–13:00🥪 Lunch Break

Which branching strategy fits your team? You compare three common models: Git Flow with release and hotfix branches for traditional release cycles, GitHub Flow as a lean alternative with a single main branch and feature branches, and Trunk-Based Development for teams with continuous deployment. For each strategy you configure the matching protected branch rules in GitLab and discuss which model plays to its strengths at which team size and release cadence.

A preview of what our GitLab CI/CD Training covers in depth. You write a simple .gitlab-ci.yml with two stages (build and test), define jobs with scripts and watch GitLab execute the pipeline live. You understand what a GitLab Runner is and how shared runners work on gitlab.com. By the end you have a working pipeline and know where the entry point to CI/CD lies.

gitlabGitLab

Small tricks with big impact. You speed up your daily work with:

  • keyboard shortcuts for faster navigation and Quick Actions in issues and merge requests (e.g. /assign, /label, /close)
  • the GitLab CLI (glab) for tasks directly from the terminal
  • current GitLab features like the Merge Request Homepage for more efficient reviews and Exact Code Search for cross-project search

To close, you create a personal checklist: which Git aliases, shell configurations and GitLab settings to implement on your first day back in the project.

16:00–16:30💭 Questions & Answers

Our Benefits

All from one hand!

With our high-quality trainings and workshops, you can bring yourself and your team up to date. All this with many benefits that you get from us.

👨‍💻High Practical Content
70% hands-on, 30% theory. You work continuously with real scenarios and take working code home with you. No PowerPoint battles, but directly applicable knowledge for your projects.
☁️Cloud Learning Environment
DevNinjas Dojo: Your own Kubernetes clusters and VMs for each participant in the browser. No installation, works despite VPN/proxy/firewalls. You work with dedicated resources, not in shared environments.
🥷Experienced Trainers
Full-time DevOps engineers and consultants from DevNinjas lead the workshops. Not external trainers, but specialized employees actively working on client projects and sharing real-world experience.
👥Small Groups
Maximum 8 participants per workshop. Everyone gets individual support from the trainer. Your specific questions and use cases get answered, not passed over in anonymous crowds.
🏗️Real-World Scenarios
No toy examples or hello-world demos. You work with production-grade setups: multi-container applications, CI/CD pipelines, monitoring stacks. Directly transferable to your production environments.
🎓Certification
You receive an official certificate of attendance as PDF and a verified LinkedIn badge. Document your professional development for your employer, HR, and recruiters professionally.

Testimonials

How participants experience our trainings

4.9/ 5

1047+ participant reviews · unfiltered

across all DevNinjas trainings

Trainer
5.0
Content
4.8
Hands-on
4.8

DevNinjas overall: over 1,384 participants · 207 companies · 241 workshops

Including BMW, Bundeswehr, Deutsche Bahn and many more.

"My colleagues specifically looked for a sysadmin course for Docker with another provider and had an instructor who only set up an IDE for them and then only worked on a task sheet with development tasks. I had a course with lots of background information, an instructor who had a really extensive knowledge of the whole subject matter beyond the slides, and I feel optimally informed."

Default avatar picture of DevNinjas
Johannes Bernstein
@TRIMET Gelsenkirchen SE

"The advanced Kubernetes workshop at DevNinjas really helped me grow professionally. The content was practical and excellently prepared, so even complex topics like RBAC, network policies and Ingress were conveyed in an understandable and directly applicable way. The deep expertise of the trainer was especially impressive and noticeable in every session. I can recommend this workshop to anyone who wants to use Kubernetes in production!"

Default avatar picture of DevNinjas
Marius Büttner
@Siemens AG

"From my perspective, the workshop had the right speed and an appropriate level of challenge. The subject matter was explained clearly by the instructor and practically consolidated with well-distributed exercises. Adjusting the workshop focus to the participants wishes was not a problem. Valuable practical experiences were shared, and even more specific questions were gladly answered. The instructor's professional expertise and extensive practical experience on the subject gave this workshop a special quality."

Default avatar picture of DevNinjas
S. Kaiser
@forcont business technology GmbH

"The seminar gave a very good overview of Docker administration, with a look at Kubernetes and how this knowledge simplifies everyday work. Many small, easy-to-follow examples with hands-on exercises and a focus on best practice consolidated what we learned. The instructor had an answer to every question, and for very specific questions he came back with a fitting example. The alternation between introductions and exercises was very well organised."

Default avatar picture of DevNinjas
Sebastian A.
@DMI GmbH & Co. KG

"The workshop was very informative and I could immediately spot the mistakes I had made in past Docker projects. Before, I lacked the theory and the fundamentals, so I had only been acting on best practice. Now I can write stable Dockerfiles and Docker Compose setups and secure them properly. A very good workshop that was also a lot of fun!"

Default avatar picture of DevNinjas
Timon Strangfeld

"In the workshop the most important Docker and Kubernetes topics were put together, prepared and explained superbly. The exercises fit precisely and were very well chosen in terms of difficulty. I am very satisfied with how much I learned in the five days and feel well prepared for upcoming tasks at work. Sure, you can teach yourself a lot on your own with AI tools, but without the workshop I would not have gained this overview or worked through so many exercises independently."

Default avatar picture of DevNinjas
Christine L.

"Nico is a very friendly and technically skilled instructor. He answered all questions well. You quickly notice that he combines academic expertise with many years of professional practice."

Default avatar picture of DevNinjas
Philipp van Wickevoort Crommelin
@parcIT GmbH

"The workshop gave me a very good insight into Kubernetes and made working with containers much clearer. Nico delivered the content in a practical and well-structured way, so I could quickly find my way around. The hands-on exercises in particular helped me apply what I learned directly. For anyone looking for a solid introduction to Kubernetes, this workshop is definitely recommended."

Default avatar picture of DevNinjas
Daniel Hagen
@DKB Service GmbH

"I really enjoyed the Docker & Kubernetes workshop at DevNinjas. Nico explained the complex topics around containers and orchestration in a very understandable and practical way. The mix of theory and hands-on exercises was perfect for being able to apply everything directly. I was able to take a lot away for my everyday work and now feel significantly more confident working with Docker and Kubernetes."

Default avatar picture of DevNinjas
Dominik Kneissl
@Siemens Healthineers

"The Docker workshop at DevNinjas was an all-round success. The content was clearly structured and practically delivered, including meaningful hands-on exercises. I took away a lot and feel significantly more confident working with Docker. Even more complex topics like multi-stage builds and networking were explained in an understandable way. A clear recommendation for anyone who really wants to understand Docker!"

Default avatar picture of DevNinjas
Daniel Müller
@Siemens Healthineers

"I really enjoyed the Docker workshop at DevNinjas! The content was well structured and clearly explained, even for beginners like me. The mix of theory and hands-on exercises was especially helpful for trying Docker directly. By the end, I was able to build my own images, configure containers and set up networks. Absolutely recommended for anyone who wants to learn Docker!"

Default avatar picture of DevNinjas
Pascal Schunk
@OEDIV

"The "Docker & Kubernetes Bundle" training provided me with solid, practical knowledge for everyday work and enabled me to handle Docker and Kubernetes professionally. The excellently structured material offers real added value, even beyond the workshop. The combination of technical depth and interactive delivery by the trainer rounded off the whole experience. An experience that continues to help me even after the training."

Default avatar picture of DevNinjas
Swen Strangfeld
@Bundesdruckerei GmbH

"It was fun and I learned a lot that I can actually apply directly in my company. The trainer's approach was very hands-on, and he repeatedly brought in real-world examples."

Default avatar picture of DevNinjas
Felix R.
@Dirk Rossmann GmbH

"I can recommend the Docker workshop at DevNinjas without reservation! The training was excellently structured: theory and practice complemented each other perfectly. The trainer always answered questions competently and clearly, making even more complex topics easily accessible. I was especially impressed by the professionally designed workshop materials, which are very useful as a reference even after the course. Overall, a thoroughly successful learning experience!"

Default avatar picture of DevNinjas
Lukas Graf
@Bundeswehr

"The seminar was superbly prepared, the group pleasantly small and the materials first-class. An excellent instructor who knows the subject inside out, takes time for the participants and answers questions in detail. The learning material alternated in a balanced way between theory and hands-on exercises that were timed excellently."

Default avatar picture of DevNinjas
Kevin H.
@Oest Holding GmbH

"Competent instructor. Individual approach to problems and topics. Interesting structure. Highly recommended to get an in-depth insight into the Docker world. The workshop was definitely worth it. Thanks!"

Default avatar picture of DevNinjas
H. Hillebrand
@PFSt NRW

Continue Learning

Related Workshops for You

Next Step
Introduction to GitLab CI/CD Workshop
Beginner

Introduction to GitLab CI/CD

Learn GitLab CI/CD hands-on in two days. From your first .gitlab-ci.yml through Runners, Caching and Container Scanning with Trivy to Environments and Review Apps. You work in your own cloud environment.
2 Days€1,110.00
Tooling
Introduction to Docker Workshop
Beginner

Introduction to Docker

Learn to use Docker confidently in two days. From the container CLI through Dockerfiles and multi-stage builds to Docker Compose. You work hands-on in a dedicated cloud environment, live online in groups of up to 8 participants.
2 Days€1,110.00
Tooling
Introduction to Kubernetes Workshop
Beginner

Introduction to Kubernetes

Learn to use Kubernetes confidently in three days. From Pods and Deployments to Storage and deployment strategies. You work hands-on in your own cloud environment with kubectl, K9s, and Helm.
3 Days€1,665.00
Vincent Sturm - DevNinjas

Your Contact

Vincent Sturm

Key Account Manager

Looking for the right Kubernetes or DevOps training for your team? Vincent personally advises you on open workshops, certification prep and customized in-house training. He can also connect you with our consulting services. Get in touch with him directly.

vincent@devninjas.io
+49 221 9865099-4
WhatsApp Chat

Frequently asked questions

No, you don't need programming skills. Git is a version control system, not a programming tool. In this workshop you work with the command line and learn Git commands like git commit, git branch and git merge. The only prerequisites are basic computer skills and experience with the terminal (changing directories, creating files).

Git is the version control system itself: it runs locally on your machine and manages code changes in repositories. GitLab is a platform that extends Git with features for teamwork: merge requests for code reviews, issues and boards for project management, CI/CD pipelines for automation, and permission models for collaboration.

In this workshop you learn both: on the first day you work with Git on the command line, from day two you use GitLab as a platform for team collaboration.

The Git fundamentals (commits, branches, merge, rebase) are identical whether you use GitLab or GitHub. The difference lies in the platform:

GitLab provides CI/CD, Container Registry, Issue Tracking and Security Scanning on one platform. Strong for self-hosted setups and organizations that want everything under one roof.

GitHub offers a large Marketplace with Actions and is the standard in the open-source space.

Around 70% of this workshop covers Git itself. These skills are platform-independent and help you on any platform.

The Git training (DW19) focuses on Git itself for three days and is platform-neutral. This workshop combines Git fundamentals with GitLab as a platform: merge requests, approval rules, boards and your first CI/CD pipeline. If your team works with GitLab, this workshop is the right choice.

After three days you can:

  • Use Git confidently: independently apply commits, branches, merges, rebase and cherry-pick
  • Collaborate in GitLab: create merge requests, run code reviews and configure protected branches
  • Organize projects: use issues, boards and milestones as a workflow system
  • Fix mistakes: recover lost commits with reflog and confidently use reset vs revert

Realistically: After three days you work independently with Git and GitLab and know the platform features for daily teamwork. For CI/CD pipelines and automated deployments we recommend our GitLab CI/CD Training as the next step.

Around 70% of the time is hands-on practice. Every participant gets their own cloud environment with pre-installed GitLab (no local setup, no license issues). You run real Git commands, create merge requests and configure projects yourself instead of just watching. Theory blocks stay short and lead directly into the following exercise. Live training with an instructor, not recorded videos.

We recommend a maximum of 8 participants per training to ensure individual attention for each participant. For corporate trainings, arrangements for larger groups are possible.

Yes, upon completion you will receive an official certificate of attendance from DevNinjas as PDF. This confirms your successful participation and the topics covered. The certificate is perfect for conversations with your employer and your personnel file.

Additionally, you will receive a verified digital badge that you can directly embed in your LinkedIn profile (section "Licenses & Certifications"). The badge follows the Open Badges 2.0 standard and is verifiable via QR code at any time. This way you showcase your qualification and position yourself with recruiters.

Yes, all our workshops are also available as corporate training. We tailor content, duration and focus to the needs of your team.

Corporate trainings take place either on-site or remote. Submit your individual request and we will prepare an offer for you.

Workshop Dates

Workshop dates

Choose a suitable date and book directly online. All dates are guaranteed to run.

Guaranteed to runFew spots left

17. – 19. August 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

17. – 19. August 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇬🇧English

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to run

31. August – 02. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date
Guaranteed to runPopular date

07. – 09. September 2026

09:00 - 16:00 (CET/CEST, German time)

Online🇩🇪German

1.665,00 €

per person · plus 19% VAT

Book date

Your booking benefits

  • Guaranteed to run

    Every training date takes place: no cancellation due to low participant numbers.

  • Invoice after the workshop

    No prepayment: pay conveniently by invoice afterwards.

  • 3=2

    3-for-2 promotion*

    Register three participants, pay for two: the third seat is free.

  • Price per participant

    Transparent fixed price per participant, plus VAT.

  • No hidden costs

    Cloud lab (DevNinjas Dojo) and all training materials are included in the price.

  • Certificate & Open Badge

    Certificate of attendance plus a digital Open Badge for your LinkedIn profile included.

* Cannot be combined with other discounts.

Tailor a workshop for your team?

Custom content, flexible dates, from 1 participant.

Request