GitHub Gist Service

From GM-RKB
Jump to navigation Jump to search

A GitHub Gist Service is a GitHub Repository serviced by GitHub.



References

2020

  • http://en.wikipedia.org/wiki/GitHub#Gist
    • GitHub also operates other services: a pastebin-style site called Gist that is for hosting code snippets (GitHub proper is for hosting larger projects).

      Tom Preston-Werner presented the then-new Gist feature at a punk rock Ruby conference in 2008.[1] Gist builds on the traditional simple concept of a pastebin by adding version control for code snippets, easy forking, and SSL encryption for private pastes. Because each "gist" has its own Git repository, multiple code snippets can be contained in a single paste and they can be pushed and pulled using Git. Further, forked code can be pushed back to the original author in the form of a patch, so gists (pastes) can become more like mini-projects.[citation needed]

2014

  • https://help.github.com/articles/about-gists
    • Gists are a great way to share your work. You can share single files, parts of files, or full applications.

      Every gist is a Git repository, which means that it can be forked, cloned, and manipulated in every way. …

      There are two types of gists: public gists and secret gists. Additionally, if you are not logged into GitHub when you create your gist, it will be an anonymous gist.