Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding additional URL extensions #217

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
- [GitHub Resources](#github-resources)
- [GitHub Talks](#github-talks)
- [SSH keys](#ssh-keys)
- [GPG keys](#gpg-keys)
- [Profile Image](#profile-image)
- [User RSS feed](#user-rss-feed)
- [Repository Templates](#repository-templates)
- [Git](#git)
- [Remove All Deleted Files from the Working Tree](#remove-all-deleted-files-from-the-working-tree)
Expand Down Expand Up @@ -672,6 +674,16 @@ e.g. [https://github.com/tiimgreen.keys](https://github.com/tiimgreen.keys)

[*Read more about accessing public ssh keys.*](https://changelog.com/github-exposes-public-ssh-keys-for-its-users/)

### GPG keys

You can get a list of public gpg keys in plain text format by visiting:

```
https://github.com/{user}.gpg
```

e.g. [https://github.com/tiimgreen.gpg](https://github.com/tiimgreen.gpg)

### Profile Image

You can get a user's profile image by visiting:
Expand All @@ -682,6 +694,16 @@ https://github.com/{user}.png

e.g. [https://github.com/tiimgreen.png](https://github.com/tiimgreen.png)

### User RSS feed

You can get an activity feed for a user is RSS format by visiting:

```
https://github.com/{user}.atom
```

e.g. [https://github.com/tiimgreen.atom](https://github.com/tiimgreen.atom)

### Repository Templates

You can enable templating on your repository which allows anyone to copy the directory structure and files, allowing them to instantly use the files (e.g. for a tutorial or if writing boilerplate code). This can be enabled in the settings of your repository.
Expand Down