Welcome to the BuilderClan Site — the official open-source project for the BuilderClan community 🚀.
This repository powers our community website, built and maintained collaboratively by contributors.
To clone the project
git clone https://github.com/your_username/ur_fork_of_builderclan_site.git
Do the necessary changes on the file and add the files.
git add -A
Commit the changes
git commit -m "feat(): Implemented the feature"
Pull the changes from the main repo ( not applicable for the first push )
git pull origin branch-name
Push the changes to the repo for the first time
git push origin branch-name
Make sure you pull the changes from the repo and keep your branch updated.
git clone https://github.com/BuilderClan/builderclan-site.git
The central repository holds three main branches with two branches having infinite lifetime(dev-server & production)
- dev
dev branch is open for collaboration and serves as the development environment where contributors can work on new features and bug fixes before they are merged into other branches.
origin/production is the main branch where the source code of HEAD always reflects a production-ready state.
-
feat: (adds valuable new features or improvements that directly benefit and engage users.)
E.g. "feat(column): Added new feature.""
-
fix: ( resolve user-related issues, improving the software's reliability and providing a smoother user experience.)
E.g. "fix(case): Fixed case sensitivity issue in search functionality for accurate results."
-
docs: (making changes or updates to the documentation for better clarity and understanding.)
E.g. "docs(readme): Updated README file with installation instructions and usage examples."
-
style: ( focus on improving code appearance, such as formatting and fixing missing semicolons, without affecting functionality.)
E.g. "style(format): Corrected indentation and added missing semicolons for consistent code style."
-
refactor: (modifying the production code, such as renaming variables, to improve its structure and maintainability.)
E.g. "refactor(variables): Renamed variables for improved code clarity and maintainability."
-
test: (adding tests that were missing and improving existing tests, without changing the production code.)
E.g. "test(login): Added tests for user login functionality and refactored existing login tests."
-
chore: (updating build tasks and other non-production code aspects, without changing the actual software.)
E.g. "chore(grunt): Updated Grunt tasks for better task automation and build process efficiency."
Contributions are always welcome!
See contribution guide for ways to get started.
- If you are the maintainer of this project, you will be responsible for reviewing the pull request and merging them.
The pull request from the developers can be received only on the dev(feature, bug-fix) branch.