Structurally replace gitflow by git-flow, as a true git extension.
diff --git a/README.mdown b/README.mdown
index b2e06a9..7822416 100644
--- a/README.mdown
+++ b/README.mdown
@@ -1,5 +1,5 @@
-gitflow
-=======
+git-flow
+========
A collection of Git extensions to provide high-level repository operations
for Vincent Driessen's [branching model](http://nvie.com/archives/323 "original
blog post").
diff --git a/git-flow b/git-flow
index 04868aa..bfd033b 100755
--- a/git-flow
+++ b/git-flow
@@ -1,7 +1,7 @@
#!/bin/sh
#
-# gitflow -- A collection of Git wrapper scripts to provide high-level
-# repository operations for Vincent Driessen's branching model:
+# git-flow -- A collection of Git extensions to provide high-level
+# repository operations for Vincent Driessen's branching model.
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
@@ -34,7 +34,7 @@
usage() {
. "$GITFLOW_DIR/git-flow-version"
- echo "gitflow, version $GITFLOW_VERSION"
+ echo "git-flow, version $GITFLOW_VERSION"
echo
echo "usage: git flow <cmd> <type> <args>"
echo " git flow init [<url>]"
diff --git a/git-flow-feature b/git-flow-feature
index c4fd814..b976964 100644
--- a/git-flow-feature
+++ b/git-flow-feature
@@ -1,6 +1,6 @@
#
-# gitflow -- A collection of Git wrapper scripts to provide high-level
-# repository operations for Vincent Driessen's branching model:
+# git-flow -- A collection of Git extensions to provide high-level
+# repository operations for Vincent Driessen's branching model.
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
diff --git a/git-flow-hotfix b/git-flow-hotfix
index aea27cc..47b2bd7 100644
--- a/git-flow-hotfix
+++ b/git-flow-hotfix
@@ -1,6 +1,6 @@
#
-# gitflow -- A collection of Git wrapper scripts to provide high-level
-# repository operations for Vincent Driessen's branching model:
+# git-flow -- A collection of Git extensions to provide high-level
+# repository operations for Vincent Driessen's branching model.
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
diff --git a/git-flow-release b/git-flow-release
index f71f753..448a326 100644
--- a/git-flow-release
+++ b/git-flow-release
@@ -1,6 +1,6 @@
#
-# gitflow -- A collection of Git wrapper scripts to provide high-level
-# repository operations for Vincent Driessen's branching model:
+# git-flow -- A collection of Git extensions to provide high-level
+# repository operations for Vincent Driessen's branching model.
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323
diff --git a/git-flow-support b/git-flow-support
index aeaed34..83da42a 100644
--- a/git-flow-support
+++ b/git-flow-support
@@ -1,6 +1,6 @@
#
-# gitflow -- A collection of Git wrapper scripts to provide high-level
-# repository operations for Vincent Driessen's branching model:
+# git-flow -- A collection of Git extensions to provide high-level
+# repository operations for Vincent Driessen's branching model.
#
# Original blog post presenting this model is found at:
# http://nvie.com/archives/323