From 34a6fbe71b786fffb164956ba4aab05a5a98707b Mon Sep 17 00:00:00 2001 From: Fateme Aliakbari <136516189+fateme-alk@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:10:15 +0330 Subject: [PATCH] Update 05 First Time Git Setup.md add value for user.email in git config --global command --- Git/01 Getting Started/05 First Time Git Setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Git/01 Getting Started/05 First Time Git Setup.md b/Git/01 Getting Started/05 First Time Git Setup.md index aab05a3..0edac03 100644 --- a/Git/01 Getting Started/05 First Time Git Setup.md +++ b/Git/01 Getting Started/05 First Time Git Setup.md @@ -16,7 +16,7 @@ It’s important to set your user name and email address because every Git commi ```bash $ git config --global user.name "John Doe" -$ git config --global user.email +$ git config --global user.email "John_Doe@gmail.com" ``` ## Checking Your Settings