Thank you for showing interest in contributing to the project.
Please follow the instructions below:
When you're creating a new issue make sure to share as much information as you can. This helps to better understand the issue and fix/add new features quickly.
- Open an issue if you found a bug.
- If you want me to add any missing feature, please open an issue.
-
Fork the repository.
-
Clone the forked repository using the command.
git clone https://github.com/<YOUR-USERNAME>/fur-miliar.git
-
Create a new branch. If you're fixing a bug start the branch name with
fix/
OR if you're adding a new feature start the branch name withfeature/
.git checkout -b (fix|feature)/<WHAT-YOU-FIXED>
-
Make changes. Commit the changes with a relevant commit message.
git add . // or file name git commit -m '<WHAT-WAS-THE-CHANGE>'
-
Push the changes to GitHub.
git push -u origin <branch-name>
-
Create a Pull Request.
Thanks! 😁