Commit 6a90378daedcba7efc167cdfa0e1ac7306809391

Authored by Dmitriy Zaporozhets
2 parents 1ab91d88 16617775

Merge branch 'key-generation' of /home/git/repositories/gitlab/gitlabhq

Showing 1 changed file with 1 additions and 6 deletions   Show diff stats
app/views/help/ssh.html.haml
@@ -5,18 +5,13 @@ @@ -5,18 +5,13 @@
5 SSH key allows you to establish a secure connection between your computer and GitLab 5 SSH key allows you to establish a secure connection between your computer and GitLab
6 6
7 %p.slead 7 %p.slead
8 - To generate a new SSH key just open your terminal and use code below. 8 + To generate a new SSH key just open your terminal and use code below. Press enter to accept the defaults when generating the key.
9 9
10 %pre.dark 10 %pre.dark
11 ssh-keygen -t rsa -C "#{current_user.email}" 11 ssh-keygen -t rsa -C "#{current_user.email}"
12 12
13 - \# Creates a new ssh key using the provided email  
14 - \# Generating public/private rsa key pair...  
15 -  
16 %p.slead 13 %p.slead
17 Next just use code below to dump your public key and add to GitLab SSH Keys 14 Next just use code below to dump your public key and add to GitLab SSH Keys
18 15
19 %pre.dark 16 %pre.dark
20 cat ~/.ssh/id_rsa.pub 17 cat ~/.ssh/id_rsa.pub
21 -  
22 - \# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....