From 1f6ced10b05962d23c44a5b76e74a80f04e76512 Mon Sep 17 00:00:00 2001 From: Rose Melato Date: Thu, 9 Apr 2026 17:04:05 +0200 Subject: [PATCH 1/4] Added my name and superpower to the superpowers.md file and added documentation.txt file to document steps taken to complete the Hall of Fame task --- documentation.txt | 8 ++++++++ superpowers.md | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 documentation.txt diff --git a/documentation.txt b/documentation.txt new file mode 100644 index 0000000..a5cfce4 --- /dev/null +++ b/documentation.txt @@ -0,0 +1,8 @@ +1. Forked the file by clicking the dropdown on the fork button then create a "new fork" +2. Created an issue by clicking on issues > new issue > assign to myself, then create +4. Created a branch called feature/Rose using: git checkout -b feature/rose +5. Modified the superpowers.md file by adding my name and superpower. +6. commited the changes by first : + 1. perfoming git add . to stage the changed files for commit. + 2. commited the changes by performing: git commit -m "Added my name and my superpower". + diff --git a/superpowers.md b/superpowers.md index 6cd1c69..20015b4 100644 --- a/superpowers.md +++ b/superpowers.md @@ -3,3 +3,5 @@ - Jane Doe: Can write bug-free code while blindfolded - Nhlakanipho Masilela: Can read minds. + +- Rose Melato: Can teleport. From 8697b0ee37bcdf1776b9d10607eec3ab4b1f1ec4 Mon Sep 17 00:00:00 2001 From: Rose Melato Date: Thu, 9 Apr 2026 17:06:26 +0200 Subject: [PATCH 2/4] Added a push step to my documentation.txt file --- documentation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation.txt b/documentation.txt index a5cfce4..1c9e686 100644 --- a/documentation.txt +++ b/documentation.txt @@ -5,4 +5,4 @@ 6. commited the changes by first : 1. perfoming git add . to stage the changed files for commit. 2. commited the changes by performing: git commit -m "Added my name and my superpower". - +7. perfomed: git push to push my changes to github. \ No newline at end of file From 2f4fde745c9bb2b6edce14898c01c17efb4ed72c Mon Sep 17 00:00:00 2001 From: Rose Melato Date: Thu, 9 Apr 2026 17:07:51 +0200 Subject: [PATCH 3/4] modified my git push step to include the git command --- documentation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation.txt b/documentation.txt index 1c9e686..ab2beab 100644 --- a/documentation.txt +++ b/documentation.txt @@ -5,4 +5,4 @@ 6. commited the changes by first : 1. perfoming git add . to stage the changed files for commit. 2. commited the changes by performing: git commit -m "Added my name and my superpower". -7. perfomed: git push to push my changes to github. \ No newline at end of file +7. perfomed: git push --set-upstream origin feature/Rose to push my changes to github. \ No newline at end of file From ec68ea92e656c66cb52c944f0e0499b220e748fd Mon Sep 17 00:00:00 2001 From: Rose Melato Date: Thu, 9 Apr 2026 17:24:43 +0200 Subject: [PATCH 4/4] Added a missing line of step on my documentation file --- documentation.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/documentation.txt b/documentation.txt index ab2beab..cfc296a 100644 --- a/documentation.txt +++ b/documentation.txt @@ -1,5 +1,6 @@ 1. Forked the file by clicking the dropdown on the fork button then create a "new fork" -2. Created an issue by clicking on issues > new issue > assign to myself, then create +2. cloned the forked git repo by copying the repo link on my fork repo and used: git clone https://github.com/RoseMelato/git.git to have the repo on my local machine +3. Created an issue by clicking on issues > new issue > assign to myself, then create 4. Created a branch called feature/Rose using: git checkout -b feature/rose 5. Modified the superpowers.md file by adding my name and superpower. 6. commited the changes by first :