From c3e1dd1df460f4e31dfd1feecb8d85633cee2fea Mon Sep 17 00:00:00 2001 From: Thato Date: Thu, 9 Apr 2026 13:51:58 +0200 Subject: [PATCH 1/3] Add Thato to superpowers and document steps --- superpowers.md | 2 ++ thato_steps.txt | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 thato_steps.txt diff --git a/superpowers.md b/superpowers.md index 6cd1c69..5bb7068 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. + +- Thato: Problem-solving diff --git a/thato_steps.txt b/thato_steps.txt new file mode 100644 index 0000000..bf73fd0 --- /dev/null +++ b/thato_steps.txt @@ -0,0 +1,6 @@ +1. Forked the repository to my GitHub account. +2. Created an issue and assigned it to myself. +3. Cloned the repository to my local machine. +4. Created a branch named feature/thato. +5. Edited superpowers.md and added my name and superpower. +6. Created a text file documenting my steps. \ No newline at end of file From 12412c6fd952877bee547bbeaa8d730a995dcd82 Mon Sep 17 00:00:00 2001 From: Thato Date: Thu, 9 Apr 2026 13:59:31 +0200 Subject: [PATCH 2/3] Update steps with git commands --- thato_steps.txt | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/thato_steps.txt b/thato_steps.txt index bf73fd0..28cff2e 100644 --- a/thato_steps.txt +++ b/thato_steps.txt @@ -1,6 +1,28 @@ -1. Forked the repository to my GitHub account. -2. Created an issue and assigned it to myself. -3. Cloned the repository to my local machine. -4. Created a branch named feature/thato. -5. Edited superpowers.md and added my name and superpower. -6. Created a text file documenting my steps. \ No newline at end of file +1. Forked the repository to my GitHub account using the GitHub web interface. + +2. Created an issue titled "Add Thato to superpowers.md" and assigned it to myself. + +3. Cloned the repository to my local machine: + git clone https://github.com/Thato50/git.git + cd git + +4. Created a new branch for my work: + git checkout -b feature/thato + +5. Edited the file superpowers.md and added my name and superpower. + +6. Created a text file (thato_steps.txt) to document my steps. + +7. Checked the status of my changes: + git status + +8. Staged the changes: + git add superpowers.md thato_steps.txt + +9. Committed the changes: + git commit -m "Add Thato to superpowers and document steps" + +10. Pushed the branch to GitHub: + git push -u origin feature/thato + +11. Opened a pull request on GitHub to merge my changes into the main repository. \ No newline at end of file From 21d0bdacd8b42463ac01496e6d9ca8625fd219d7 Mon Sep 17 00:00:00 2001 From: Thato Date: Thu, 9 Apr 2026 17:24:45 +0200 Subject: [PATCH 3/3] Modified my txt file(stortened the steps) --- thato_steps.txt | 32 ++++++++++---------------------- 1 file changed, 10 insertions(+), 22 deletions(-) diff --git a/thato_steps.txt b/thato_steps.txt index 28cff2e..1ab9edb 100644 --- a/thato_steps.txt +++ b/thato_steps.txt @@ -1,28 +1,16 @@ 1. Forked the repository to my GitHub account using the GitHub web interface. - 2. Created an issue titled "Add Thato to superpowers.md" and assigned it to myself. - 3. Cloned the repository to my local machine: - git clone https://github.com/Thato50/git.git - cd git - + ~ git clone https://github.com/Thato50/git.git + ~ cd git 4. Created a new branch for my work: - git checkout -b feature/thato - + ~ git checkout -b feature/thato 5. Edited the file superpowers.md and added my name and superpower. - + ~ Edited it to: - Thato: Problem-solving 6. Created a text file (thato_steps.txt) to document my steps. - -7. Checked the status of my changes: - git status - -8. Staged the changes: - git add superpowers.md thato_steps.txt - -9. Committed the changes: - git commit -m "Add Thato to superpowers and document steps" - -10. Pushed the branch to GitHub: - git push -u origin feature/thato - -11. Opened a pull request on GitHub to merge my changes into the main repository. \ No newline at end of file +7. Staged the changes: + ~ git add superpowers.md thato_steps.txt +8. Committed the changes: + ~ git commit -m "Add Thato to superpowers and document steps" +9. Pushed the branch to GitHub: + ~ git push -u origin feature/thato