Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.54 KB

CONTRIBUTE.md

File metadata and controls

37 lines (24 loc) · 1.54 KB

Contributing to Tutorial

Welcome to Tutorial! We appreciate your interest in contributing to this project. This repository is open to everyone, and we encourage you to contribute by pushing code and submitting pull requests.

Contribution Guidelines

To maintain a consistent and efficient collaboration, we have established coding conventions and guidelines for branch creation and commit messages.

Coding Conventions

  • Follow the established coding conventions for this project. Refer to [CONVENTIONS.md] for details.

Branch Naming Convention

  • Use clear and descriptive names for your branches. Avoid generic names and consider using hyphens to separate words.

Commit Message Guidelines

  • Write clear and concise commit messages that describe the purpose of your changes.
  • Follow the conventional commit format. For example:
    • feat: add new feature
    • fix: resolve a bug
    • docs: update documentation
    • Refer to [CONVENTIONS.md] for more examples.

How to Contribute

  1. Fork the repository to your GitHub account.
  2. Clone the forked repository to your local machine.
  3. Create a new branch for your feature or bug fix: git checkout -b your-branch-name.
  4. Make your changes and commit them with descriptive messages.
  5. Push your changes to your forked repository: git push origin your-branch-name.
  6. Open a pull request on the Tutorial repository.

Thank you for contributing to Tutorial! Your efforts help make this project better for everyone. If you have any questions or need assistance, feel free to reach out.

Happy coding!