Thank you for your interest in contributing to the PB_Website project! We welcome all contributions, whether they are bug fixes, new features, documentation improvements, or anything else that makes our project better.
Click the Fork button on the top right of the repository page to create your own copy of the project.
git clone https://github.com/YOUR-USERNAME/PB_Website.git
cd PB_WebsiteTo keep your fork up-to-date:
git remote add upstream https://github.com/pointblank-club/PB_Website.git
git fetch upstreamCreate a branch for your feature or fix:
git checkout -b my-feature- Make your changes in the codebase.
- Test your changes if applicable.
- Update documentation if necessary.
Write clear, concise commit messages.
git add .
git commit -m "Describe your change"git push origin my-feature- Go to your fork on GitHub.
- Click Compare & pull request.
- Add a descriptive title and detailed description.
- Reference any related issues (e.g., “Closes #123”).
- Submit the pull request to the
mainbranch.
- Follow the style/conventions used in the existing codebase.
- Write clear and descriptive variable and function names.
- If you are unsure, open a draft PR to get feedback.
If you find a bug or want to request a feature:
- Open an issue here.
- Search existing issues before submitting a new one.
- Your PR will be reviewed by maintainers.
- You may be asked for changes or clarifications.
- Once approved, your PR will be merged.
By participating, you agree to abide by our community’s code of conduct.
If you have any questions, please open an issue or start a discussion.
Thank you for your contributions!