From 59998419a2b27db467b6ce059b2b59993cf6fc9d Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Tue, 21 Apr 2026 11:28:23 +0200 Subject: [PATCH] improved howto --- docs/howto.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/howto.md b/docs/howto.md index ae59823..c31983d 100644 --- a/docs/howto.md +++ b/docs/howto.md @@ -11,7 +11,7 @@ Stellen Sie hierfür sicher, dass [git](https://git-scm.com) installiert ist. 1. Repository klonen: - ``` + ```sh git clone https://git.mypapercloud.de/fierke/tagwiki.git && cd tagwiki ``` @@ -22,13 +22,13 @@ Stellen Sie hierfür sicher, dass [git](https://git-scm.com) installiert ist. 3. Fork als Remote hinzufügen: - ``` + ```sh git remote add fork https://git.mypapercloud.de/IHR-NUTZERNAME/tagwiki.git ``` 4. Neue Branch erstellen: - ``` + ```sh git checkout -b meine-aenderungen ``` @@ -36,14 +36,14 @@ Stellen Sie hierfür sicher, dass [git](https://git-scm.com) installiert ist. 6. Änderungen übernehmen: - ``` + ```sh git add . git commit -m "Beschreibung der Änderung" ``` 7. Änderungen pushen: - ``` + ```sh git push fork meine-aenderungen ```