diff --git a/README.md b/README.md index 813b6e3..ec44418 100644 --- a/README.md +++ b/README.md @@ -1 +1,29 @@ -# Git-Github \ No newline at end of file +# Git-Github +Task 4: Documentation + +Update the project's documentation README.md on how you fix the bug. +Commit and push the documentation changes to the GitHub repository on +your "use-your full name" branch +Upload the screenshot of your commit showing your name and email + +### Creating Branch + +Created a branch using the Github console and was named +`obasoro-olakunle` + +Added both name and email to the `mine.py` file + +#### Task 2 + +Merged the the `main` branch with `obasoro-olakunle` branch + +```sh +git checkout main + +git pull origin main + +git merge obasoro-olakunle + +git push origin main + +``` diff --git a/mine.py b/mine.py index cee063b..8d8df7e 100644 --- a/mine.py +++ b/mine.py @@ -1,6 +1,6 @@ # Define variables -name = "PUT YOUR NAME" -email = 'PUT YOUR EMAIL' +name = "Obasoro Olakunle" +email = 'obasorokunle@gmail.com' # Print the name and email address print("Name:", name)