Last active
August 29, 2018 04:57
-
-
Save martin-cotta/5c8b0ca4761c684ec69d98d6fff6f850 to your computer and use it in GitHub Desktop.
Revisions
-
Martin Cotta revised this gist
Aug 29, 2018 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,12 @@ ssh-keygen eval `ssh-agent` ssh-add -K ~/.ssh/id_rsa # Copy public key content pbcopy < ~/.ssh/id_rsa.pub # Verify configuration ssh -T git@bitbucket.org # So that your computer remembers your password each time it restarts, # open (or create) the ~/.ssh/config file and add these lines to the file: -
Martin Cotta revised this gist
Aug 29, 2018 . No changes.There are no files selected for viewing
-
Martin Cotta created this gist
Aug 29, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ # Generate public/private rsa key pair ssh-keygen # Add the key to the ssh-agent eval `ssh-agent` ssh-add -K ~/.ssh/id_rsa # So that your computer remembers your password each time it restarts, # open (or create) the ~/.ssh/config file and add these lines to the file: # Host * # UseKeychain yes