Follow these steps when contributing to the repo! Make sure you have cloned the repo and are all set to go.
Before you start making changes, always make sure you're on the main branch.
- Make sure your code is up to date with
git pull - Create a new branch with
git checkout -b <name-of-branch> - Make your changes
Using git or your choice of preference, follow these steps (assuming you have done the above).
git add .(to stage all files) orgit add <file-name>(to stage specific file)git commit -m "<type>: <description>"using conventional commit messagesgit push -u origin <name-of-branch>
After pushing, go to the project repo on Github
- Create a new pull request and fill out the PR template
- Make sure your PR is linked to the corresponding issue
- Request a reviewer to check out your code
- Once approved, your code is ready to be merged!