rvanginneken / gitbox
There is no license information available for the latest version (0.0.5) of this package.
A GIT extension for The Box Versioning.
0.0.5
2019-02-21 13:05 UTC
README
git-box
A GIT extension which uses the petervanderdoes/gitflow-avh extension to create branches following the box's versioning:
MAJOR.RELEASE.HOTFIX
git-box will only bump version if there is no active release/hotfix (local or remote) and the last tag was using our versioning. Assuming everything else was set up as expected, you end it up with a branch that has been synced to remote.
Installation
After installing gitflow-avh, git-box can be installed with composer:
$ composer global require rvanginneken/gitbox
Usage
Assuming our latest tag was 7.3.1, the following changes would apply:
- Using
$ git box majorwould bump the version to8.0.0. - Using
$ git box releasewould bump the version to7.4.0. - Using
$ git box hotfixwould bump the version to7.3.2.
Created by Roy Van Ginneken & Martijn Cuppens.