From 3f39f2eb90ac4e88fde50e19391b1c4c6ff7fb13 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rene=20Hamp=C3=B6lz?= <hampoelz@student.tugraz.at>
Date: Tue, 22 Oct 2024 01:15:07 +0200
Subject: [PATCH] docs(ssh): Change windows path separator

---
 docs/ssh.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/ssh.md b/docs/ssh.md
index dc53627..77a0ac2 100644
--- a/docs/ssh.md
+++ b/docs/ssh.md
@@ -77,15 +77,15 @@ You should be able to generate a key with the `ssh-keygen` command on any operat
 
 1. Open your terminal _(use PowerShell on Windows)_
 2. Create a new SSH key:
-    - Windows: `ssh-keygen -f "$Env:USERPROFILE\.ssh\tugraz_rsa"`
+    - Windows: `ssh-keygen -f "$Env:USERPROFILE/.ssh/tugraz_rsa"`
     - Linux / MacOS: `ssh-keygen -f ~/.ssh/tugraz_rsa`
 3. Press enter for all questions to keep the default
     - _Make sure that you do not overwrite any already existing keys!_
 4. Add your private key to the SSH authentication agent:
-    - Windows: `ssh-add "$Env:USERPROFILE\.ssh\tugraz_rsa"`
+    - Windows: `ssh-add "$Env:USERPROFILE/.ssh/tugraz_rsa"`
     - Linux / MacOS: `ssh-add ~/.ssh/tugraz_rsa`
 5. Copy the content of your public key. To display the content, execute one of the following commands:
-    - Windows: `type "$Env:USERPROFILE\.ssh\tugraz_rsa.pub"`
+    - Windows: `type "$Env:USERPROFILE/.ssh/tugraz_rsa.pub"`
     - Linux / MacOS: `cat ~/.ssh/tugraz_rsa.pub`
 6. Log into the [TU Graz GitLab](https://gitlab.tugraz.at/) and click on "*Edit profile*". Then go to the "*SSH key*" page in the right menu. Add a new key and paste your public key from the clipboard into the key field.
 
-- 
GitLab