From 07cdbacba6c0dddbdb1f28d18dd22bdb1de2cb96 Mon Sep 17 00:00:00 2001
From: Richard Glosner <xglosner@fi.muni.cz>
Date: Mon, 17 Mar 2025 13:51:39 +0100
Subject: [PATCH] internal: fix indentation in README.md

---
 README.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 06aba99..c266653 100644
--- a/README.md
+++ b/README.md
@@ -178,17 +178,17 @@ This is straight forward:
 
    - **Fail** – If the appliance cannot be done automatically (due to merge conflicts), the merge request will contain no commits and it will contain message that appliance of the commit cannot be done. You will need to:
      1. Update your local repository (since new branch was created on the remote).
-     ```
-     git fetch
-     ```
+        ```
+        git fetch
+        ```
      2. Switch to the created branch (the name can be seen in the MR – `COPY-<commit-hash>`)
-     ```
-     git switch COPY-<commit-hash>
-     ```
+        ```
+        git switch COPY-<commit-hash>
+        ```
      3. Try to apply the commit yourself
-     ```
-     git cherry-pick <commit-hash>
-     ```
+        ```
+        git cherry-pick <commit-hash>
+        ```
      4. This should end with error:
         ```
         CONFLICT: Merge conflict
-- 
GitLab