Last active
March 4, 2020 11:05
-
-
Save sooorajjj/a7fd240887e1e74f6b460f0db5766bfa to your computer and use it in GitHub Desktop.
add gerrit ssh-key
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 characters
$ git config --global user.email "[email protected]" | |
$ git config --global user.name "blah" | |
$ ssh-keygen -t rsa -C "[email protected]" | |
$ eval `ssh-agent` | |
$ ssh-add ~/.ssh/id_rsa_e_blah | |
#Identity added: /home/${USER}/.ssh/id_rsa_e_blah ([email protected]) | |
$ ssh -p 29418 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment