blob: 347e6f48ff0ce8a37ec9100bff43f6900fefd092 [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 Driessen133c43c2010-03-19 19:27:19 +010014GITFLOW_VERSION=0.2.1
Vincent Driessen3625f392010-01-28 00:13:26 +010015
16usage() {
17 echo "usage: git flow version"
18}
19
Vincent Driessenb866b012010-01-28 01:01:53 +010020cmd_default() {
21 echo "$GITFLOW_VERSION"
22}
23
Vincent Driessen3625f392010-01-28 00:13:26 +010024cmd_help() {
25 usage
26 exit 0
27}