GitHub > Cheat Sheet
Contents
GitHub
If set up correctly, every time you receive a Pull Request, Travis CI will build that Pull Request just like it would every time you make a new commit.
You can get a list of public ssh keys in plain text format by visiting: https://github.com/{user}.keys
You can get a user's profile image by visiting: https://github.com/{user}.png
If you want to link to another issue in the same repository, simply type hash # then the issue number, and it will be auto-linked.
Within Jekyll pages and posts, repository information is available within the site.github namespace, and can be displayed, for example, using {{ site.github.project_title }}. The Jemoji and jekyll-mentions plugins enable emoji and @mentions in your Jekyll posts and pages to work just like you'd expect when interacting with a repository on GitHub.com.
Many blogging websites, like Jekyll with GitHub Pages, depend on some YAML-formatted metadata at the beginning of your post. GitHub will render this metadata as a horizontal table, for easier reading
GitHub supports rendering tabular data in the form of .csv (comma-separated) and .tsv (tab-separated) files.
After a pull request is merged, you may find it does not help anything or it was a bad decision to merge the pull request. You can revert it by clicking the Revert button on the right side of a commit in the pull request page to create a pull request with reverted changes to this specific pull request.
Task Lists in Markdown Documents
Diffs
Hub
Git
Use the Git instaweb command to instantly browse your working repository in gitweb. This command is a simple script to set up gitweb and a web server for browsing the local repository. ``bash $ git instaweb ` opens: Git instaweb Read more about the Git instaweb` command.