From 166177751650e648f8cc7ccafbd87c7923994b75 Mon Sep 17 00:00:00 2001
From: dosire <sytse@gitlab.com>
Date: Mon, 9 Dec 2013 09:02:35 +0100
Subject: [PATCH] The comments make it hard to copy paste commands. If you
 paste the whole line it fails.

---
 app/views/help/ssh.html.haml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/app/views/help/ssh.html.haml b/app/views/help/ssh.html.haml
index 72a21b89cab..773e490ef80 100644
--- a/app/views/help/ssh.html.haml
+++ b/app/views/help/ssh.html.haml
@@ -5,18 +5,13 @@
     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.
+    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}"
 
-    \# Creates a new ssh key using the provided email
-    \# Generating public/private rsa key pair...
-
   %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
-
-    \# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
-- 
GitLab