Practice the core Git workflow — clone, branch, revert, commit, push — and GitLab collaboration features. Everything happens inside Visual Studio Code, using its integrated terminal and the telekom-app test project.
git --version in any terminal: Windows, macOS: brew install git, Linux: sudo apt install git-allClone the project with Git in VS Code’s terminal, work on your own branch, fix history, and push your changes.
https://gitlab.com/telekom-devops-workshop/telekom-app.git using VS Code’s integrated terminal.workshop-<participant_name> — e.g. workshop-john.git checkout -b workshop-<your_name>
git add .gitignore notes.txt
git commit -m "Add notes.txt and ignore it"
public/html/home.html to Telekom careers service! and commit it.public/html/home.htmlTelekom careers service!home.html and click the + (Stage Changes) buttonUpdate greeting to Telekom careers service, and click ✓ Commitgit add public/html/home.html
git commit -m "Update greeting to Telekom careers service"
git push -u origin workshop-<your_name>
Collaborate through GitLab’s web interface: merge requests and code review.
workshop-… branch into the project’s main branch.