You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Remove All Deleted Files from the Working Tree](#remove-all-deleted-files-from-the-working-tree)
59
60
-[Previous Branch](#previous-branch)
60
61
-[Stripspace](#stripspace)
61
-
-[SSH keys](#ssh-keys)
62
62
-[Checking out Pull Requests](#checking-out-pull-requests)
63
63
-[Empty Commits](#empty-commits)
64
64
-[Styled Git Status](#styled-git-status)
@@ -656,6 +656,18 @@ If you are a student you will be eligible for the GitHub Student Developer Pack.
656
656
| Git and GitHub Secrets |https://www.youtube.com/watch?v=Foz9yvMkvlA|
657
657
| More Git and GitHub Secrets |https://www.youtube.com/watch?v=p50xsL-iVgU|
658
658
659
+
### SSH keys
660
+
661
+
You can get a list of public ssh keys in plain text format by visiting:
662
+
663
+
```
664
+
https://github.com/{user}.keys
665
+
```
666
+
667
+
e.g. [https://github.com/tiimgreen.keys](https://github.com/tiimgreen.keys)
668
+
669
+
[*Read more about accessing public ssh keys.*](https://changelog.com/github-exposes-public-ssh-keys-for-its-users/)
670
+
659
671
## Git
660
672
### Remove All Deleted Files from the Working Tree
661
673
When you delete a lot of files using `/bin/rm` you can use the following command to remove them from the working tree and from the index, eliminating the need to remove each one individually:
@@ -715,18 +727,6 @@ $ git stripspace < README.md
715
727
716
728
[*Read more about the Git `stripspace` command.*](http://git-scm.com/docs/git-stripspace)
717
729
718
-
### SSH keys
719
-
720
-
You can get a list of public ssh keys in plain text format by visiting:
721
-
722
-
```
723
-
https://github.com/{user}.keys
724
66E4
-
```
725
-
726
-
e.g. [https://github.com/tiimgreen.keys](https://github.com/tiimgreen.keys)
727
-
728
-
[*Read more about accessing public ssh keys.*](https://changelog.com/github-exposes-public-ssh-keys-for-its-users/)
729
-
730
730
### Checking out Pull Requests
731
731
732
732
Pull Requests are special branches on the GitHub repository which can be retrieved locally in several ways:
0 commit comments