From 78a7459a1ae7501f4b7a94c5c46852d666c01257 Mon Sep 17 00:00:00 2001 From: 0Armaan025 Date: Sun, 22 Oct 2023 19:14:03 +0530 Subject: [PATCH] feat: made CONTRIBUTING.md better, fun and emojified --- CONTRIBUTING.md | 61 ++++++++++++++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 26 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e80949a3..60d4487a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,55 +1,64 @@ +🌟 To contribute to this GitHub project, let's make it a fun adventure! Here are the steps to join the party: -To contribute to this GitHub project, you can follow these steps: +1. 🍴 Fork the repository you want to contribute to by clicking the "Fork" button on the project page. -1. Fork the repository you want to contribute to by clicking the "Fork" button on the project page. +2. 🚀 Clone the repository to your local machine and enter the newly created repo using the following commands: -2. Clone the repository to your local machine and enter the newly created repo using the following commands: - -``` +```bash git clone https://github.com/YOUR-GITHUB-USERNAME/TaskMatrix.git cd TaskMatrix ``` -3. Create a new branch for your changes using the following command: -``` +3. 🌿 Create a new branch for your changes using the following command: + +```bash git checkout -b "branch-name" ``` -4. Make your changes to the code or documentation. -5. Add the changes to the staging area using the following command: -``` -git add . -``` +4. 🎨 Make your changes to the code or documentation. Get creative! + +5. 🚂 Add the changes to the staging area using the following command: -6. Commit the changes with a meaningful commit message using the following command: +```bash +git add . ``` + +6. 📝 Commit the changes with a meaningful commit message using the following command: + +```bash git commit -m "your commit message" ``` -7. Push the changes to your forked repository using the following command: -``` + +7. 🚀 Push the changes to your forked repository using the following command: + +```bash git push origin branch-name ``` -8. Go to the GitHub website and navigate to your forked repository. -9. Click the "New pull request" button. +8. 🌐 Go to the GitHub website and navigate to your forked repository. -10. Select the branch you just pushed to and the branch you want to merge into on the original repository. +9. 🌟 Click the "New pull request" button. -11. Add a description of your changes and click the "Create pull request" button. +10. 🌳 Select the branch you just pushed to and the branch you want to merge into on the original repository. -12. Wait for the project maintainer to review your changes and provide feedback. +11. 📢 Add a description of your changes and click the "Create pull request" button. -13. Make any necessary changes based on feedback and repeat steps 5-12 until your changes are accepted and merged into the main project. +12. 🧐 Wait for the project maintainer to review your changes and provide feedback. -14. Once your changes are merged, you can update your forked repository and local copy of the repository with the following commands: +13. 🔄 Make any necessary changes based on feedback and repeat steps 5-12 until your changes are accepted and merged into the main project. -``` +14. 🎉 Once your changes are merged, you can update your forked repository and local copy of the repository with the following commands: + +```bash git fetch upstream git checkout main git merge upstream/main ``` -Finally, delete the branch you created with the following command: -``` + +Finally, 🪂 delete the branch you created with the following command: + +```bash git branch -d branch-name ``` -That's it you made it 🐣⭐⭐ \ No newline at end of file + +That's it, you've made it! 🐣✨ Your contributions have earned you ⭐⭐ in the open-source galaxy. 🌌🚀 Keep the open-source spirit alive! 🤘😎 \ No newline at end of file