Find an issue to work on from the issues page and comment under it or raise your own. Once you are assigned, proceed to work on it:
- Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
- Clone your fork down to your local machine
git clone https://github.com/<YOUR_USERNAME>/Calculator
- Create a new branch (use relevant names based on your issue)
git checkout -b branch-name
- Make your changes (choose from any task below)
- Commit and push
git add .
git commit -m 'Commit message'
git push origin branch-name
- Open a pull request to the main branch of the repository and wait for it to be merged.