blob: cbb66b6072370ee74d9d1240b5ef56fb333e7704 [file] [log] [blame]
Vincent Driessen3625f392010-01-28 00:13:26 +01001#
2# git-flow -- A collection of Git extensions to provide high-level
3# repository operations for Vincent Driessen's branching model.
4#
5# Original blog post presenting this model is found at:
6# http://nvie.com/archives/323
7#
8# Feel free to contribute to this project at:
9# http://github.com/nvie/gitflow
10#
11# Copyright (c) 2010 by Vincent Driessen
12# Copyright (c) 2010 by Benedikt Böhm
13#
Vincent Driessenf7812422010-01-26 15:58:32 +010014GITFLOW_VERSION=0.2-dirty
Vincent Driessen3625f392010-01-28 00:13:26 +010015
16usage() {
17 echo "usage: git flow version"
18}
19
20cmd_help() {
21 usage
22 exit 0
23}
24
25cmd_default() {
26 echo "$GITFLOW_VERSION"
27}