"A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model."
sprint/[name]
$ brew install git-flow-avh
$ port install git-flow-avh
$ apt-get install git-flow
$ git flow init
$ git flow feature start EOS-999-Kurze-Beschreibung
$ git checkout -b feature/EOS-999-Kurze-Beschreibung
$ git flow feature publish EOS-999-Kurze-Beschreibung
$ git push origin feature/EOS-999-Kurze-Beschreibung
$ git flow feature track EOS-999-Kurze-Beschreibung
$ git checkout -b feature/EOS-999-Kurze-Beschreibung origin/feature/EOS-999-Kurze-Beschreibung
Leichte Abweichung vom Git Flow mit dem sprint/xy
Branch
$ git flow feature finish EOS-999-Kurze-Beschreibung
$ git push
$ git flow release start 1.5.0
$ git flow release finish 1.5.0
$ git push --follow-tags
$ git checkout master
$ git push --follow-tags