Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.83 KB

Contributing.md

File metadata and controls

52 lines (37 loc) · 1.83 KB

🤝 Contributing to the Counter App

Thank you for your interest in contributing to the Counter App! We appreciate your efforts to help improve the project. Please follow the guidelines below to ensure a smooth contribution process.

💡 How to Contribute

1. Fork the Repository

Click the "Fork" button at the top-right corner of the repository page to create your own copy of the project.

2. Clone Your Forked Repository

In your terminal, run the following command to clone your fork:

git clone https://github.com/yourusername/counter-app.git

3. Create a New Branch

Navigate into the project directory and create a new branch for your feature or fix:

cd counter-app
git checkout -b feature-branch

4. Make Your Changes

Implement your feature or fix. Make sure to follow the coding style and best practices used in the project.

5. Commit Your Changes

Once you’re satisfied with your changes, stage them and commit with a descriptive message:

git add .
git commit -m 'Add new feature or fix description'

6. Push to Your Branch

Push your changes back to your forked repository:

git push origin feature-branch

7. Submit a Pull Request

Go to the original repository where you want to propose your changes and click on the "Pull Request" button. Provide a clear description of the changes you've made, including any relevant context.

📜 Guidelines

  • Be Respectful: Keep discussions constructive and respectful.
  • Focus on Issues: Before starting work, check if there’s an existing issue for your feature or bug fix.
  • Test Your Code: Ensure that your changes work as expected and do not break existing functionality.

📄 License

By contributing, you agree that your contributions will be licensed under the MIT License. See the LICENSE file for details.