DevOps / Github Interview questions
What is a GitHub Gist?
A Gist is a lightweight way to share a snippet of code or text on GitHub without creating a full repository for it. Each Gist is itself a small Git repository, so it has full version history and can be cloned like any other repo, just scoped to holding a handful of files instead of an entire project.
Gists can be public (discoverable and forkable by anyone) or secret (unlisted, though not fully private in the sense of requiring authentication to view if someone has the link). They're commonly used for sharing quick code examples, configuration snippets, or error logs in discussions and support requests.
More Related questions...