From ad977b47728b46b43d433f8f46bf10564c8b65a0 Mon Sep 17 00:00:00 2001 From: Emeka Ezeh Date: Sun, 15 Oct 2023 11:15:50 +0100 Subject: [PATCH 1/2] Fixed the bug using my details --- mine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mine.py b/mine.py index cee063b..de6850d 100644 --- a/mine.py +++ b/mine.py @@ -1,6 +1,6 @@ # Define variables -name = "PUT YOUR NAME" -email = 'PUT YOUR EMAIL' +name = "Emeka Ezeh" +email = 'emekaezeh5@gmail.com' # Print the name and email address print("Name:", name) From 2436b215974ebc9df55b7d8f3a6ad818bccde44d Mon Sep 17 00:00:00 2001 From: Emeka Ezeh Date: Sun, 15 Oct 2023 11:18:49 +0100 Subject: [PATCH 2/2] Project Documentation --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9884dbc..2088b96 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,11 @@ # Git-Github -hello +# I forked the repository from 'https://github.com/VeeSprout/Git-Github.git and cloned it on my local machine +# Then I created a branch of the main repo with my full name "emeka-ezeh" using the branch command +# using the checkout command I navigated to the new branch created +# In the new branch I updated the mine.py file with my full name and email address. +# I saved the file and move it to the staging area with the "add" command. +# I commit the file with a meaningful measage . +# Using the Push command , I push the branch "Emeka Ezeh" to the remote repository. +# Then I checked out to the main branch to merge the "main" and "emeka-ezeh" branches +# with the "git merge" command I performed a fast-forward merging of both branches without any conflit +# Then I used the push command to publish my local commits to the remote repository. \ No newline at end of file