-
Fork the Repository
- Navigate to the Open Peer Chat GitHub Repository.
- Click the Fork button in the top-right corner to create your own copy of the repository.
-
Clone Your Forked Repository
git clone https://github.com/YOUR_USERNAME/OpenPeerChat-flutter.git cd OpenPeerChat-flutter
-
Make Your Changes
- Modify the code to implement the required feature or resolve the issue.
-
Commit Your Changes
- Stage your changes and commit them with a meaningful message.
git add . git commit -m "Add: Brief description of your update"
-
Push Your Changes
- Push your changes to your forked repository.
git push origin main
-
Create a Pull Request
- Go to your forked repository on GitHub.
- Click the Compare & Pull Request button.
- Add a detailed description of the changes you made.
- Include a link to a demo video showcasing the feature you added or the issue you resolved.
- Submit the pull request for review.
- Contributors should make changes directly to the
main
branch of their forked repository. - Ensure that your code adheres to the project’s coding standards and passes all necessary tests before creating a pull request.
- Provide a clear and concise description of your changes in the pull request, along with screenshots or video demonstrations if applicable.
- Keep your forked repository up-to-date with the latest changes from the
main
branch to avoid conflicts.