👍🎉 First off, thanks for taking the time to contribute! 🎉👍
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Discussing the current state of the code
- Reporting a bug
- Submitting a fix
- Proposing new features
- Contributing to documentation
We use Github Flow, all code changes happen through Pull Requests. We actively welcome your pull requests. So here are the steps to get started.
You can get your own fork/copy of React Auth Kit by using the Fork button.
You need to clone (download) it to local machine using
git clone https://github.com/Your_Username/react-auth-kit.gitThis makes a local copy of the repository in your machine.
Once you have cloned the React-Auth-Kit repository from GitHub, move to that folder first using change directory command.
# This will change directory to a folder Plant_Disease_Detection
cd react-auth-kitMove to this folder for all other commands.
Once you have completed these steps, you are ready to start contributing by checking our Help Wanted Issues and creating pull requests.
Whenever you are going to make a contribution. Please create a separate branch using command and keep your master branch clean (i.e. synced with remote branch).
# It will create a new branch with the name Branch_Name and will switch to that branch.
git checkout -b Branch_NameInstall project dependencies
# It will install all necessary dependencies
npm install🎉 Now comes coding time 🎉
To add the changes to the branch. Use,
# To add all files to branch Branch_Name
git add .Type in a message relevant for the code reviewer using
# This message gets associated with all files you have changed
git commit -m 'relevant message'Now, Push your awesome work to your remote repository using
# To push your work to your remote repository
git push -u origin Branch_NameFinally, go to your forked repository in your browser and click on Compare & pull request.
Use our pull request template format.
Then add a title and description to your pull request that explains your precious effort.
Now, sit back and relax till we review your PR, you've made your contribution to our project.
By contributing, you agree that your contributions will be licensed under Apache License 2.0.
🎉 🎊 😃 Happy Contributing 😃 🎊 🎉
