There is no license information available for the latest version (0.0.5) of this package.

A GIT extension for The Box Versioning.

Installs: 46

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 2

Forks: 2

Open Issues: 2

Language:Shell

0.0.5 2019-02-21 13:05 UTC

This package is auto-updated.

Last update: 2024-04-14 18:31:53 UTC


README

Latest Stable Version

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 to 8.0.0.
  • Using $ git box release would bump the version to 7.4.0.
  • Using $ git box hotfix would bump the version to 7.3.2.

Created by Roy Van Ginneken & Martijn Cuppens.