- Take a look at the Existing Issues or create your own Issues!
- Wait for the Issue to be assigned to you after which you can start working on it.
- Fork the Repo and create a Branch for any Issue that you are working upon.
- Read the Code of Conduct file.
- Create a Pull Request which will be promptly reviewed and suggestions would be added to improve it.
- Add Screenshots to help us know what this Script is all about.
1. Fork this repository.
Click on the symbol at the top right corner.
2. Clone the forked repository.
git clone https://github.com/<your-github-username>/Manthan
3. Navigate to the project directory.
cd Manthan
4. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/Manthan933/Manthan
5. Check the remotes for this repository.
git remote -v
6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).
git pull upstream master
7. Create a new branch.
git checkout -b <your_branch_name>
8. Make changes in the code as required.
9. Track your changes:heavy_check_mark: .
git add .
10. Commit your changes .
git commit -m "<your commit_message>"
11. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
12. Create a PR !
13. Congratulations! Sit back and relax, you've made your contribution to Manthan project. Give us some time so that we can review it and reply back to you.🤗
For major changes, you are welcomed to open an issue and discuss what you would like to contribute. Enhancements will be appreciated.