Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 616 Bytes

File metadata and controls

15 lines (13 loc) · 616 Bytes

Generating a SSH public/private key pair

  1. Windows: Start GIT Bash OSX & Linux: start Terminal
  2. Use the command below to create the key pair
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  1. When prompted for the file to save the key, press 'Enter' (or 'Return') to accept the default
  2. Enter a secure passphase when prompted. Check github help for more information if required.

The generated files will be stored in: Windows: c:\users<your username>.ssh OSX: /Users//.ssh Linux: /home//.ssh