Contributing to Weather-App
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Submitting a fix
- Proposing new features
Please follow these simple steps to start working:
1. If you want to work on issue then comment. If you get assigned, Fork this repository.
2. Clone your forked copy of the project.
git clone https://github.com/Sanket1308/Weather-App.git
3. Navigate to your project directory and open it in your code editor. 📁 .
cd Weather-App
4. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/Sanket1308/Weather-App.git
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 main
7. Create a new branch.
git checkout -b <your_branch_name>
8. Perform your desired changes to the code base.
9. Track your changes:heavy_check_mark: .
git add .
10. Commit your changes .
git commit -m "Relevant message"
11. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
12. Open a Pull Request with a name of the issue and describe about your changes with reasons. To create a pull request, click on compare and pull requests
. Please ensure you compare your feature branch to the desired branch of the repository you are supposed to make a PR to.
13. Add appropriate title and description to your pull request explaining your changes and efforts done.
14. Click on Create Pull Request
.
15 Voila!
16 Woohoo! You have made a PR to the Sanket1308/Weather-App 💥 . Wait for your submission to be accepted and your PR to be merged.
Thank you for your interest in contributing to our Repo!🏼