DevOps / Gitlab Interview questions
What is the GitLab Wiki?
Every GitLab project (and group, on higher tiers) can have its own Wiki: a set of Markdown pages stored in a separate Git repository specifically for documentation. Because it's backed by Git, wiki pages get full version history, and teams can even clone the wiki repository and edit pages locally like normal files.
It's typically used for onboarding docs, architecture notes, or runbooks that belong next to the code but don't need to live in the main source repository itself, keeping the two histories independent.
More Related questions...