Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.78 KB

contributing.md

File metadata and controls

56 lines (37 loc) · 1.78 KB

Contributor Guide

Thank you for considering contributing to this project! Here are some guidelines to help you get started.

How to Contribute

  1. Fork the repository
    Fork the project to make your changes without affecting the original codebase.

  2. Clone your forked repository

    git clone https://github.com/GDSC-RCCIIT/gdg-website.git
    cd gdg-website
  3. Create a new branch
    It's a good idea to work in a branch separate from main. Name your branch according to the feature or issue you're working on.

    git checkout -b feature/new-feature
  4. Make your changes
    Work on your code. Make sure to follow the coding style guidelines (if provided) and commit often with clear, concise commit messages.

    git commit -m "Add new feature"
  5. Push your changes to your forked repository

    git push origin feature/new-feature
  6. Submit a Pull Request
    Once you're satisfied with your changes, open a Pull Request from your feature branch to the master branch of this repository. Provide a clear description of what you have done and why.

Code Style

  • Use meaningful names for variables, functions, and commits.
  • Keep the code clean and follow existing conventions in the codebase.

Reporting Issues

If you find a bug or have a feature request, please create an issue here. Provide as much detail as possible, and if you can, offer a solution.

Code of Conduct

Please be respectful to other contributors and follow the Code of Conduct.

License

By contributing, you agree that your contributions will be licensed under the project's LICENSE.


Thanks again for helping us improve the project!