Thank you for considering contributing to this project! Here are some guidelines to help you get started.
-
Fork the repository
Fork the project to make your changes without affecting the original codebase. -
Clone your forked repository
git clone https://github.com/GDSC-RCCIIT/gdg-website.git cd gdg-website
-
Create a new branch
It's a good idea to work in a branch separate frommain
. Name your branch according to the feature or issue you're working on.git checkout -b feature/new-feature
-
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"
-
Push your changes to your forked repository
git push origin feature/new-feature
-
Submit a Pull Request
Once you're satisfied with your changes, open a Pull Request from your feature branch to themaster
branch of this repository. Provide a clear description of what you have done and why.
- Use meaningful names for variables, functions, and commits.
- Keep the code clean and follow existing conventions in the codebase.
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.
Please be respectful to other contributors and follow the Code of Conduct.
By contributing, you agree that your contributions will be licensed under the project's LICENSE.
Thanks again for helping us improve the project!