“Git Bash SSH Key hinzufügen” Code-Antworten

Fügen Sie Ihren SSH-privaten Schlüssel zum SSH-Agent hinzu. Wenn Sie Ihren Schlüssel mit einem anderen Namen erstellt haben oder einen vorhandenen Schlüssel mit einem anderen Namen hinzufügen, ersetzen Sie ID_RSA im Befehl durch den Namen Ihrer privaten Schlüsseldatei.

$ cat ~/.ssh/id_rsa.pub
Glorious Gemsbok

Terminal Git SSH -Schlüssel hinzufügen

$ ssh-add ~/.ssh/id_rsa
Obedient Ox

Windows Git SSH -Schlüssel hinzufügen

(if youre having problems)
cd path-to-Git/bin (for me : cd C:\Program Files\Git\bin)
bash
$ exec ssh-agent bash
$ ssh-add your-key-location
GitPaulo

Git SSH -Schlüssel hinzufügen

To add a default ssh key tied to Windows from cmd for git: $ is things you type, > is output

$ ssh-keygen 
> Generating public/private rsa key pair.
> Enter file in which to save the key (/c/Users/emmap1/.ssh/id_rsa):    [Enter for default] 
> Created directory '/c/Users/emmap1/.ssh'.
$ Enter passphrase (empty for no passphrase): [password]
$ Enter same passphrase again:  [password]
> Your identification has been saved in /c/Users/emmap1/.ssh/id_rsa.
> Your public key has been saved in /c/Users/emmap1/.ssh/id_rsa.pub.
> The key fingerprint is: e7:94:d1:a3:02:ee:38:6e:a4:5e:26:a3:a9:f4:95:d4 emmap1@EMMA-PC

If you want to avoid typing in your password each time:
$ start-ssh-agent
> Removing old ssh-agent sockets
> Starting ssh-agent:  done
$ Enter passphrase for /c/Users/user/.ssh/id_rsa: [password]

Important Ibex

Git Bash SSH Key hinzufügen

One liner (RSA, no passphrase)

keyname='secretKey' ; comment='[email protected]' ; ssh-keygen -t rsa -b 4096 -o -a 100 -f ~/.ssh/$keyname -q -N '' -C $comment ; eval `ssh-agent` ; ssh-add ~/.ssh/$keyname

Read on https://linux.die.net/man/1/ssh-keygen for parameter meaning
Dull Deer

Ähnliche Antworten wie “Git Bash SSH Key hinzufügen”

Fragen ähnlich wie “Git Bash SSH Key hinzufügen”

Weitere verwandte Antworten zu “Git Bash SSH Key hinzufügen” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen