Versão do artigo: Enterprise Server 2.17
Verificar se há chaves SSH
Antes de gerar uma chave SSH, você pode verificar se há outras chaves SSH.
Note: DSA keys were deprecated in OpenSSH 7.0. If your operating system uses OpenSSH, you'll need to use an alternate type of key when setting up SSH, such as an RSA key. For instance, if your operating system is macOS Sierra, you can set up SSH using an RSA key.
-
Open TerminalTerminalGit Bash.
-
Digite
ls -al ~/.ssh
para verificar se as chaves SSH existentes estão presentes:$ ls -al ~/.ssh # Lists the files in your .ssh directory, if they exist
-
Verifique a listagem do diretório para verificar se você já tem uma chave SSH pública. Por padrão, os nomes de arquivo das chaves públicas são um dos seguintes:
- id_rsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_dsa.pub
If you don't have an existing public and private key pair, or don't wish to use any that are available to connect to GitHub Enterprise, then generate a new SSH key.
If you see an existing public and private key pair listed (for example id_rsa.pub and id_rsa) that you would like to use to connect to GitHub Enterprise, you can add your SSH key to the ssh-agent.
Dica: se você receber um erro informando que ~/.ssh não existe, não se preocupe! Nós o criaremos quando gerarmos uma chave SSH.