Answers for "ssh key git"

2

ssh key git

Generate SSH Key:
$ ssh-keygen -t rsa -C "[email protected]"

Add public key to git:
$ cat ~/.ssh/id_rsa.pub
- Copy all ouput
- Open web browser and paste the output on the client settings you use.

Start SSH agent:
$ eval "$(ssh-agent -s)"

Add private key to SSH agent:
$ ssh-add ~/.ssh/id_rsa
Posted by: Guest on September-22-2021
18

ssh github generate key

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

how to generate ssh key for git

Step1: in git bash type this
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"

# press enter to skip the prompt or enter the details if you like for
# 1. > Enter a file in which to save the key (/c/Users/you/.ssh/id_algorithm):[Press enter]
# 2. > Enter passphrase (empty for no passphrase): [Type a passphrase]
# 3. > Enter same passphrase again: [Type passphrase again]

Step2: start the ssh-agent in the background
$ eval $(ssh-agent -s)

Step3: Add your SSH private key to the ssh-agent.
$ ssh-add ~/.ssh/id_ed25519

Step4: Generate public key 
$ cat ~/.ssh/id_ed25519.pub

Step5: Copy and Paste the generate key to your github SSH key
Done!
Posted by: Guest on July-15-2021
2

ssh keygen

ssh-keygen -t rsa -b 8192
Posted by: Guest on September-16-2020
2

ssh keygen

ssh-keygen -t rsa -C [email protected]
Posted by: Guest on June-30-2020
3

ssh key github

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language