- I chose native Windows Secure Channel Library
- Previously I was having a lot of trouble getting setup. I am not sure if the SSL/TLS library caused this or not.
ssh-keygen
with passphraseclip < <PUBLIC KEY>
paste into Github or BitBucket settingsssh -T [email protected]
to add key to known_hosts
- Add config (no ext) file to .ssh folder (to handle mutiple identities):
ssh -T [email protected]
git clone [email protected]:<ALIAS>/<REPOSITORY_NAME>.git
Host github.com
IdentityFile ~/.ssh/github
Host bitbucket.org
HostName bitbucket.org
IdentityFile ~/.ssh/bitbucket
Host bitbucket.org-personal
HostName bitbucket.org
IdentityFile ~/.ssh/bitbucket-personal