Further reading: https://docs.github.com/
Function | Shortcut |
---|---|
Opens a repository or pull request in the web-based editor | . |
Focus the search bar | S or / |
Open blame view | B |
Activate file finder | T |
Goto line | L |
Paste | Middle Mouse Button |
Delete word | Ctrl + Backspace |
Further reading: https://docs.github.com/en/get-started/using-github/keyboard-shortcuts
commit message
Co-authored-by: John Doe <johndoe@email.com>
Further reading:
- Download and install GnuPG from https://gnupg.org/download/index.html
- Generate a new GPG key by running
gpg --full-generate-key
in the command line ⚠️ Important: Make sure to use the same email address as your GitHub account- List your GPG keys by running
gpg --list-secret-keys --keyid-format LONG
- Copy the GPG key ID
- Add the GPG key to your GitHub account by running
gpg --armor --export <GPG_KEY_ID>
- Copy the GPG key and paste it into your GitHub account settings starting with and including
-----BEGIN PGP PUBLIC KEY BLOCK-----
and ending with-----END PGP PUBLIC KEY BLOCK-----
- Configure Git about your GPG key by running
git config --global user.signingkey <GPG_KEY_ID>
Further reading: