This document outlines the workflow process for contributing to this project. Please follow these steps to ensure smooth collaboration and code integration.
Before making any changes, use an existing branch or create one from the main
branch.
Before starting any work, always pull the latest changes from main to ensure your branch is up to date and avoid merge conflicts later.
- git checkout main
- git pull origin main
- checkout your-branch-name
- merge main
Once your branch is up to date, make the necessary changes. Be sure to test your code thoroughly to ensure it runs as expected.
After making and testing your changes, commit them with a meaningful message and push them to your remote branch.
Once your changes are pushed, open a Pull Request (PR) from your branch to the main branch. Ensure the PR description clearly explains the changes and includes any relevant details.
- Navigate to the repository on GitHub.
- Click the "Compare & pull request" button for your branch.
- Review the changes and resolve any merge conflicts if they exist.
- Submit the pull request.