Create An SSH Key
Option 1: Did you use RailsInstaller on Windows?
Go on to Create A Heroku Account
Option 2: Do you have a preexisting SSH key for some other reason?
Type this in the terminal:ls ~/.ssh/id_rsa'No such file or directory''/Users/[something]/.ssh/id_rsa'Go on to Create A Heroku Account
Option 3: Generate an SSH key
Type this in the terminal:ssh-keygen -C student@example.com -t rsaChoose whether to use a passphrase
No passphrasePassphraseExpected result:Generating public/private rsa key pair. Enter file in which to save the key (/Users/student/.ssh/id_rsa): Created directory '/Users/student/.ssh'. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /Users/student/.ssh/id_rsa. Your public key has been saved in /Users/student/.ssh/id_rsa.pub. The key fingerprint is: 88:54:ab:77:fe:5c:c3:7s:14:37:28:8c:1d:ef:2a:8d student@example.comVerify
Type this in the terminal:ssh-add ~/.ssh/id_rsaExpected result:Enter passphrase for /Users/student/.ssh/id_rsa: Identity added: /Users/student/.ssh/id_rsa (/Users/student/.ssh/id_rsa)"
Next Step:
Go on to Create A Heroku Account