From e464885cd0ad9f64a3de5b668490abd118155427 Mon Sep 17 00:00:00 2001 From: Sara Fechner Date: Thu, 17 Aug 2023 10:56:00 +0200 Subject: [PATCH] Add bash to code line --- src/day_3/notes.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/day_3/notes.md b/src/day_3/notes.md index d0b38c8..6ff8296 100644 --- a/src/day_3/notes.md +++ b/src/day_3/notes.md @@ -6,12 +6,14 @@ The participants of the course will add a description to each of these Git subco Configure user-specific information like name, email etc. An example for setting the email is -```git config --global user.email you@gotthis.com +```bash +git config --global user.email you@gotthis.com ``` An example for setting the username would be -```git config --global user.name "Wonderful-Person" +```bash +git config --global user.name "Wonderful-Person" ``` ## git init