-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Git workflow | ||
|
||
In the development of Ontop project, we follow the following git-workflow: [http://nvie.com/posts/a-successful-git-branching-model/](http://nvie.com/posts/a-successful-git-branching-model/) | ||
In the development of Ontop project, we follow the `git-workflow`: [http://nvie.com/posts/a-successful-git-branching-model/](http://nvie.com/posts/a-successful-git-branching-model/) | ||
|
||
A few points: | ||
* Main development branch: `versionX`. Every commit in this branch is expected to be shipped with the next x.y.0 release. | ||
* Main development branch: `versionX`. Every commit in this branch is expected to be shipped with the next X.Y.Z release. | ||
* Names of the branches: | ||
* feature branches: `feature/featurename` | ||
* bug fix branches: `bugfix/bugname`. | ||
* If there a corresponding GitHub page, use name `bugfix/bugname-issue-number` or `bugfix/issue-number` | ||
* Maintenance branches for releases: `releasing/vX.Y` (e.g. `releasing/v5.0`) | ||
|
||
* Use `--no-ff` option for merging, especially for merging the the feature or bugfix branches to `versionX` | ||
* Use `--no-ff` option for merging, especially for merging the feature or bugfix branches to `versionX` | ||
|
||
> The --no-ff flag causes the merge to always create a new commit object, even if the merge could be performed with a fast-forward. This avoids losing information about the historical existence of a feature branch and groups together all commits that together added the feature. |