Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.23 KB

CONTRIBUTING.md

File metadata and controls

42 lines (26 loc) · 1.23 KB

Contributing to React Frontend Toolkit

Thank you for considering contributing to React Frontend Toolkit. Here are some guidelines to help you get started.

How to Contribute

  1. Fork the Repository: Start by forking the repository to your GitHub account.

  2. Clone the Repository: Clone the forked repository to your local machine.

    git clone git@github.com:drbarzaga/React-Frontend-Toolkit.git
  3. Create a Branch: Create a new branch for your feature or bug fix.

    git checkout -b feature/your-feature-name
  4. Make Changes: Make your changes in the codebase.

  5. Commit Changes: Commit your changes with a clear and concise commit message.

    git add .
    git commit -m "Add feature: your feature name"
  6. Push Changes: Push your changes to your forked repository.

    git push origin feature/your-feature-name
  7. Create a Pull Request: Open a pull request to the main repository. Provide a detailed description of your changes.

Reporting Issues

If you find any bugs or have feature requests, please open an issue on the GitHub Issues page.

Thank you for your contributions!