Project

verat

0.0
No commit activity in last 3 years
No release in over 3 years
git-flow CLI manager
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

~> 1.2.7
~> 0.3.3
 Project Readme

Verat Gem Version Dependency Status

Verat is a gitflow CLI manager. It is inspired in Vincent Driessen's branching model and his plugin gitflow

##Installation

$ gem install verat

##Usage ###Features:

To start a new feature run this command, FEATURE will be the name of your new feature.

verat feature start FEATURE

Once you finished the feature run this command. It will checkout to your develop branch and merge the feature branch into develop.

verat feature finish FEATURE

###Hotfixes: To start a new hotfix run this command, HOTFIX will be the name of your new feature.

verat feature start HOTFIX

Once you finished the hotfix run this command. It will checkout to master branch, merge the hotfix branch and then checkout to the develop branch and merge the hotfix branch.

verat feature finish HOTFIX

###Releases: To start a new release run this command, RELEASE will be the version of the release.

verat release start RELEASE

Once you finished the release run this command. It will checkout to master branch, merge the release branch and then checkout to the develop branch and merge the release branch.

Optionally you can pass the --no-tag to prevent that Verat creats automatically a tag, so you can later make the tag by yourself.

verat release finish RELEASE