Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
# Git-Github
# Git-Github
# 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 "gbenga-ojo-samuel" using the branched command
# using the checkout command i navigated to the new branch created
# in the new branch i updated the mine.py file with full name and email address.
# i saved the file and move it to the stage=ing area with the "add" command.
# i commit the file with a meaningful measage .
# Using the Push command , i push the branch "gbenga-ojo-samuel" to the remote repository.
# Then i checked out to the main branch to merge the "main" and "gbenga-ojo-samuel" 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 rpository.
4 changes: 2 additions & 2 deletions mine.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Define variables
name = "PUT YOUR NAME"
email = 'PUT YOUR EMAIL'
name = "Gbenga Ojo-samuel"
email = 'ojosamuel700@gmail.com'

# Print the name and email address
print("Name:", name)
Expand Down