From 3c7db218a593e61966b2142d981c6996bc2ca802 Mon Sep 17 00:00:00 2001 From: Orest Ivasiv Date: Sat, 7 Oct 2023 21:40:51 +0200 Subject: [PATCH] fix notes indentation --- docs/wiki/howtos/git.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/wiki/howtos/git.md b/docs/wiki/howtos/git.md index 57acaf9..8ec8ba0 100644 --- a/docs/wiki/howtos/git.md +++ b/docs/wiki/howtos/git.md @@ -15,7 +15,7 @@ tags: !!! note - The `--soft` option means that you will not lose the uncommitted changes you may have. + The `--soft` option means that you will not lose the uncommitted changes you may have. ```shell git reset --soft HEAD~1 @@ -25,7 +25,7 @@ git reset --soft HEAD~1 !!! note - If you want to reset to the last commit and also remove all unstaged changes, you can use the `--hard` option + If you want to reset to the last commit and also remove all unstaged changes, you can use the `--hard` option ```shell git reset --hard HEAD~1