https://github.com/commitground/guide
Commitground's General guide about contributing
https://github.com/commitground/guide
Last synced: 4 months ago
JSON representation
Commitground's General guide about contributing
- Host: GitHub
- URL: https://github.com/commitground/guide
- Owner: commitground
- Created: 2018-07-05T02:43:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-05T03:49:38.000Z (over 7 years ago)
- Last Synced: 2025-07-09T07:07:44.631Z (7 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to join as a contributor
Thanks for contributing to the Commitground project. This document is about general conventions for Commitground project. However each sub projects may have their own conventions or policie.
If you want to be a full time contributor for Commitground, please contact [Commitplay team](https://commitplay.io). Click [here](mailto:join@commitplay.io) to send an email.
# Branching Convention
Use [Git flow](https://nvie.com/posts/a-successful-git-branching-model/)
- `master`: Latest released versions.
- `pre-release`: Beta versions. This branch is for preparing a release and does not mean a released version.
- `develop`: Alpha versions
- `group/title`: Branches to merge into `develop`, `pre-release`, or `master`.
- groups
- feature: Branch to develop a specific feature. If they are planned for a specific release version, merge them into the `release/version`. Otherwise, merge them into the develop branch.
- `bug/`: Branches to fix bugs which are related to the registered issues.
- `hotfix/`: Branches to fix a released version. Merge them into `master` branch & `develop` branch
- `release/`: Branches to prepare a specific release version. Merged them into `pre-release` & `develop` branch
- examples
Branch name should be descriptive
- `feature/reward-contract-for-contributor`
- `bug/issue-32-selection-error`
**Please work with your forked repository. And sync the forked repo's each branches to the origin(commitground)**