You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
4
+
5
+
6
+
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.
7
+
8
+
# Branching Convention
9
+
10
+
Use [Git flow](https://nvie.com/posts/a-successful-git-branching-model/)
11
+
12
+
-`master`: Latest released versions.
13
+
-`pre-release`: Beta versions. This branch is for preparing a release and does not mean a released version.
14
+
-`develop`: Alpha versions
15
+
-`group/title`: Branches to merge into `develop`, `pre-release`, or `master`.
16
+
- groups
17
+
- 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.
18
+
-`bug/`: Branches to fix bugs which are related to the registered issues.
19
+
-`hotfix/`: Branches to fix a released version. Merge them into `master` branch & `develop` branch
20
+
-`release/`: Branches to prepare a specific release version. Merged them into `pre-release` & `develop` branch
21
+
- examples
22
+
Branch name should be descriptive
23
+
-`feature/reward-contract-for-contributor`
24
+
-`bug/issue-32-selection-error`
25
+
26
+
**Please work with your forked repository. And sync the forked repo's each branches to the origin(commitground)**
0 commit comments