GitXplorerGitXplorer
a

verat

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
dbabccd109ab59076a4acbb7a1cee468e5b4a439

Merge branch 'release-0.2.0'

aadrrian17 committed 11 years ago
Unverified
2b77d4a0c1e640eb278b06db62548159edea8cb4

Updates release command docs in README

aadrrian17 committed 11 years ago
Unverified
8f8ce3f96e9ba190a21ca78896ab55765e055488

Bumps version to 0.2.0

aadrrian17 committed 11 years ago
Unverified
73d010e4096b06fd42fc6390015203d9107933cb

Merge branch 'feature/tags-flag' into develop

aadrrian17 committed 11 years ago
Unverified
742bb16e65d10277432f9ac9a2bfd2403da2f120

Removes unnecessary string interpolation

aadrrian17 committed 11 years ago
Unverified
28ca7f6a0be35d1cac83c4213679bcc529197574

Changes tag option in release finish command

aadrrian17 committed 11 years ago

README

The README file for this repository.

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