blob: e394de928824b669d146efe0f13b2d2ccce99856 [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
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}