DevOps / Github Interview questions
What is the GitHub Wiki?
Every GitHub repository can have its own Wiki: a set of Markdown pages stored in a separate Git repository dedicated to that project's documentation. Because it's Git-backed, wiki pages have full edit history, and the wiki repository can even be cloned and edited locally like any other Git repo.
It's typically used for content that belongs alongside the code but doesn't need to live in the main source repository, like architecture notes, contribution guidelines, or onboarding docs, keeping the two histories separate from the primary codebase.
More Related questions...