First off, thank you for considering contributing to Auto-Fill-Tool! We welcome contributions of all sizes, from fixing typos to adding new features.
- Fork the repository on GitHub by clicking the Fork button.
- Clone your fork locally:
git clone https://github.com/YOUR-USERNAME/Auto-Fill-Tool.git
cd Auto-Fill-Tool- Add upstream remote:
git remote add upstream https://github.com/sunilkumar2170/Auto-Fill-Tool.gitnpm installgit checkout -b my-new-featureUse descriptive names (e.g., fix/header-typo, feature/dark-mode, docs/update-readme).
npm run devOpen http://localhost:3000 in your browser.
npm run lintnpm testsrc/app/β Next.js pagessrc/app/components/β Reusable React componentssrc/app/lib/β Utility functions, Redux slicespublic/β Static assets
- Commit your changes:
git add .
git commit -m "feat: add dark mode toggle"- Sync with upstream:
git fetch upstream
git rebase upstream/main- Push to your fork:
git push origin my-new-feature-
Open a PR on: https://github.com/sunilkumar2170/Auto-Fill-Tool
-
Describe your PR clearly:
- What did you fix or add?
- Attach screenshots (before & after)
- Mention the issue number (e.g., Closes #17)
Open an issue and ask β we are happy to help!
Happy coding! π