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..1ab9edb --- /dev/null +++ b/thato_steps.txt @@ -0,0 +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 +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. + ~ Edited it to: - Thato: Problem-solving +6. Created a text file (thato_steps.txt) to document my steps. +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