rvanginneken / gitbox
A GIT extension for The Box Versioning.
Installs: 48
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 2
Open Issues: 2
Language:Shell
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 major
would bump the version to8.0.0
. - Using
$ git box release
would bump the version to7.4.0
. - Using
$ git box hotfix
would bump the version to7.3.2
.
Created by Roy Van Ginneken & Martijn Cuppens.