$> git config --global user.name 'Bruce Carvalho'
$> git config --global user.email 'brucecarvalho@ascp.com.br'
$> git config --system core.editor phpstorm
// OSX
$ brew install git-flow
//OR
$ port install git-flow
// Linux
$ apt-get install git-flow
//Windows (git bash)
$ wget -q -O - --no-check-certificate \
https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | bash
$>git flow feature start <task-name>
//publicar a feature para atualizar a task no JIRA
$>git flow feature publish <task-name>
$> git flow feature finish <task-name>
publish
pull request
Merged
$ git flow release start v0.0.0
$ git flow release finish v0.0.0
$ git flow hotfix start v0.0.0 <task-name>
$ git flow hotfix finish v0.0.0