Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh.html.haml « help « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 773e490ef80c26c8b3ebea246f1ac780fa6bfd29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= render layout: 'help/layout' do
  %h3.page-title SSH Keys

  %p.slead
    SSH key allows you to establish a secure connection between your computer and GitLab

  %p.slead
    To generate a new SSH key just open your terminal and use code below. Press enter to accept the defaults when generating the key.

  %pre.dark
    ssh-keygen -t rsa -C "#{current_user.email}"

  %p.slead
    Next just use code below to dump your public key and add to GitLab SSH Keys

  %pre.dark
    cat ~/.ssh/id_rsa.pub