From a3d2250b6592ee83f9226f3124e607ed3985a298 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 17 Aug 2023 10:59:27 +0200 Subject: [PATCH] Update notes.md git config --- src/day_3/notes.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/day_3/notes.md b/src/day_3/notes.md index 2a0586a..6bbe4c8 100644 --- a/src/day_3/notes.md +++ b/src/day_3/notes.md @@ -4,6 +4,20 @@ The participants of the course will add a description to each of these Git subco ## git config +This command is used to pass information onto git. + +Example: + +```bash +$ git config --global user.name "USERNAME" +``` + +and + +```bash +$ git config --global user.email "EMAIL" +``` + ## git init ## git clone