DevOps / Github Interview questions
What is GitHub Pages?
GitHub Pages is free static site hosting built into every repository, commonly used for documentation, project landing pages, and portfolios. A site can be published straight from a branch (like gh-pages or the docs/ folder on main) or built via a GitHub Actions workflow for static site generators like Jekyll or Hugo.
Once enabled in the repository's settings, the site becomes available at a predictable URL such as username.github.io/repo, with support for custom domains and automatic HTTPS certificates.
More Related questions...