We welcome contributions to the components-react repository. To ensure smooth collaboration, please follow the guidelines below.
-
Fork the repository by clicking the "Fork" button on the GitHub page.
-
Clone your forked repository:
git clone https://github.com/your-username/components-react.git cd components-react -
Create a new branch for your feature or fix:
git checkout -b feature-branch-name
-
Make your changes in the new branch.
- Follow consistent coding styles, including proper indentation and meaningful variable names.
- Write clear and concise commit messages.
- Keep commits small and focused on one task or feature.
- Ensure your code passes all tests and adheres to linting rules.
- Always work in a separate branch from the main branch.
- Commit your changes and create a pull request to merge your branch into the main branch.
- Pull requests must be reviewed and approved by at least one other team member before merging.
-
After you've completed your changes, push your branch to your fork:
git push origin feature-branch-name
-
Go to the GitHub repository page and open a pull request from your branch to the main branch.
-
In your pull request, provide a clear description of your changes and the problem they solve.
-
Wait for a team member to review your pull request. Once approved, it will be merged into the main branch.
We appreciate your contributions and look forward to working together to improve this project!