Skip to content

Files

Latest commit

c5fadf8 · Mar 19, 2025

History

History
51 lines (36 loc) · 2.42 KB

README.md

File metadata and controls

51 lines (36 loc) · 2.42 KB
GitHub

📖 Documentation

Further reading: https://docs.github.com/

Keyboard & Mouse Shortcuts

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

Co-author

commit message

Co-authored-by: John Doe <johndoe@email.com>

Further reading:

GPG Key Setup

Windows

  1. Download and install GnuPG from https://gnupg.org/download/index.html
  2. Generate a new GPG key by running gpg --full-generate-key in the command line
  3. ⚠️ Important: Make sure to use the same email address as your GitHub account
  4. List your GPG keys by running gpg --list-secret-keys --keyid-format LONG
  5. Copy the GPG key ID
  6. Add the GPG key to your GitHub account by running gpg --armor --export <GPG_KEY_ID>
  7. 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-----
  8. Configure Git about your GPG key by running git config --global user.signingkey <GPG_KEY_ID>

Further reading: