Skip to content

Instantly share code, notes, and snippets.

View axel-avb's full-sized avatar
🥶
winter

Alexey V. Barnukoff axel-avb

🥶
winter
  • Joined Oct 19, 2025
View GitHub Profile
@axel-avb
axel-avb / gist:2cdaca66367d491e8aee1cb1dbd740a6
Created October 27, 2025 13:58
SSH keypair setup for GitHub (or GitHub/GitLab/BitBucket, etc, etc)
Create a repo.
Make sure there is at least one file in it (even just the README.md)
Generate a SSH key pair (private/public):
ssh-keygen -t rsa -C "your_email@example.com"
or even better:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"