From 12687e777bb55a4ba710259290a4c65c46b6729b Mon Sep 17 00:00:00 2001 From: Saarthak Maini <94912101+SaarthakMaini@users.noreply.github.com> Date: Sun, 1 Oct 2023 13:33:30 +0530 Subject: [PATCH] Create CONTRIBUTING.md --- CONTRIBUTING.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..df3bee3 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,57 @@ +# Welcome To Quest Project Contribution Guide! 🥳 + +## Getting started and Making A Pull Request + +**Fork The Repository by clicking the fork button** + +**Clone the repository:** +``` bash +git clone https://github.com/Rajeshkeshoju/quest-jntuh.git +``` + +**Navigate into the repository :** +``` bash +cd quest-jntuh +``` + +**Create a new branch:** +```bash +git branch +git checkout +``` + +**Make the necessary changes** + +**Add changes made to the staging area:** +```bash +git add +``` + +**Commit Changes** +```bash +git commit -m"" +``` +**Push Changes** +```bash +git push origin +``` + +**Create a Pull Request** + +## Discussions + +- Have a question? Want to discuss a feature? [Start a discussion](https://github.com/Rajeshkeshoju/quest-jntuh/discussions) + + We welcome any discussions and questions. We want to make sure that Reflex is the best it can be, and we can't do that without your help. + +## Issues + +* ### Create a new issue + + If you spot a problem with anything in the repository, please feel free to create an issue. Even if you are not sure if its a problem with the framework or your own code, create an issue and we will do our best to answer or resolve it. + +* ### Solve an issue + + Scan through our [existing issues](https://github.com/Rajeshkeshoju/quest-jntuh/issues) to find one that interests you. You can narrow down the search using `labels` as filters. If you find an issue to work on, please make sure to get it assigned to you by the respective maintainer and submit the corresponding fix. + +**Thank you for supporting the project !🎊**