Contribution Guideline: To contribute in this project, follow the below steps:
- Clone the repo
- Inititalize git in your local system.
To commit your changes in the project:
- use git add . command to add all your changes
- use git branch -M branchName to create a new branch
- use git remote add origin https://github.com/manpoffc/Mello.git to add your system into the origin.
- use git commit -M "Your message about the changes"
- use git push -u origin branchName
This is very important Always pull the latest code base before making changes in your local repo. use git fetch origin, to fetch the codebase use git status to check whether the codebase is latest or not If the codebase is of latest version, pull the changes using git pull.