Answers for "how to configure ssh key in gitlab"

16

gitlab set ssh key

Generate SSH Key:
- ssh-keygen -t rsa -C "Comment for key"

Add it to gitlab:
- cat ~/.ssh/id_rsa.pub (copy all output)
- Open web browser, go to: Gitlab > User Settings > SSH Keys
- Paste copied output in the SSH key section

Test connection:
- ssh -T [email protected] (can use private url)

Do some git stuff:
- git clone something
Posted by: Guest on September-12-2021
0

configurar chave ssh gitlab

ssh-keygen -C [email protected]
Posted by: Guest on May-05-2020

Code answers related to "how to configure ssh key in gitlab"

Browse Popular Code Answers by Language