Answers for "ssh keygen github"

18

ssh github generate key

$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
Posted by: Guest on April-15-2020
6

add ssh key to github

### ADD SSH key to Github  ###

# Check if you have a key?
ssh-add -l

# If not? then follow steps to generate key
ssh-keygen -t rsa -b 4096 -C your__gmail

# Now for copy the key use xclip tool or just goto file and copy
sudo apt install xclip
xclip -sel clip < ~/.ssh/id_rsa.pub

# Now goto github.com and goto settings 
# select  SSH and GPG keys
# New SSH key
# Enter "your__choice__name" in title field...
# Paste your public key into the Key field
# Click Add SSH key

DONE!!!
Posted by: Guest on August-11-2020
1

how to create ssh key for github

$ eval "$(ssh-agent -s)"
> Agent pid 59566
Posted by: Guest on June-18-2020
3

ssh key github

$ ssh-keygen -t ed25519 -C "[email protected]"
Posted by: Guest on November-11-2020
3

add ssh key to github

> Enter a file in which to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]
Posted by: Guest on October-14-2020
0

ssh keygen github

ssh-keygen -t rsa -b 4096 -C "[email protected]"
Posted by: Guest on September-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language