From c03927d825c2cc41edb7177599f96edc56ac769c Mon Sep 17 00:00:00 2001 From: Hannes G Date: Wed, 16 Aug 2023 15:40:52 +0200 Subject: [PATCH] Fix codeblocks, now formatted like bash --- src/day_3/notes.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/day_3/notes.md b/src/day_3/notes.md index 805fc35..2a0586a 100644 --- a/src/day_3/notes.md +++ b/src/day_3/notes.md @@ -16,15 +16,15 @@ This command stages one or more files for the next commit, adding them to everyt Examples are: -~~ +```bash git add "example.txt" -~~ +``` or -~~ +```bash git add --all -~~ +``` if you want to stage all changes.