From 093d59bc0fe62946d9a7259da1422a6284a7c402 Mon Sep 17 00:00:00 2001
From: Nicolas Henry <nicolas.henry@sb-roscoff.fr>
Date: Fri, 1 Dec 2023 11:49:03 +0100
Subject: [PATCH] default ssh key name use by default ssh naming to avoid
 having to do extra steps

---
 02-gitlab-clone/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/02-gitlab-clone/README.md b/02-gitlab-clone/README.md
index 70e1795..f879582 100644
--- a/02-gitlab-clone/README.md
+++ b/02-gitlab-clone/README.md
@@ -41,13 +41,13 @@ Using SSH to interact with the repository required you to copy an SSH key file t
 
 The command to generate a key looks like:
 ```
-ssh-keygen -t ed25519 -f ~/.ssh/ed25519_gitlab
+ssh-keygen -t ed25519
 ```
 And creates two files: a file with a secret key and a file with a public key. 
 
 To display the contents of the file with the public key, use:
 ```
-cat ~/.ssh/ed25519_gitlab.pub
+cat ~/.ssh/id_ed25519.pub
 ```
 
 An example of how to generate a key pair and view the public key is given in the following screencast:
-- 
GitLab