Commit 166177751650e648f8cc7ccafbd87c7923994b75

Authored by dosire
1 parent 845b98ec

The comments make it hard to copy paste commands. If you paste the whole line it fails.

Showing 1 changed file with 1 additions and 6 deletions   Show diff stats
app/views/help/ssh.html.haml
... ... @@ -5,18 +5,13 @@
5 5 SSH key allows you to establish a secure connection between your computer and GitLab
6 6  
7 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 10 %pre.dark
11 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 13 %p.slead
17 14 Next just use code below to dump your public key and add to GitLab SSH Keys
18 15  
19 16 %pre.dark
20 17 cat ~/.ssh/id_rsa.pub
21   -
22   - \# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
... ...