After setting up the Frontend and Backend locally follow the below mentioned steps to raise a PR.
- Create a new branch and checkout to it in your forked repo with name as GitHubUsername/#IssueNumber using
git checkout -b BRANCH_NAME
. Example: If I'm working on issue no. 12 then my branch name would be kunaljain0212/#12. - Make your changes on this branch, and then stage you changed using
git add .
command. - Commit your changes with a meaningful commit msg using
git commit -m"MESSAGE"
. - Push your changes to your branch using
git push origin BRANCH_NAME
. - Raise a PR from your forked repo to the main repo and reference the issue number in the PR message.
- Wait for the PR to get merged 🎉🎉.