Add some example hook scripts.
diff --git a/hooks/pre-flow-feature-start b/hooks/pre-flow-feature-start
new file mode 100755
index 0000000..818418e
--- /dev/null
+++ b/hooks/pre-flow-feature-start
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# Ran before git flow feature start
+#
+# Positional arguments:
+# $1 The friendly name of the branch
+# $2 The origin remote
+# $3 The full branch name (including the feature prefix)
+# $4 The base from which this feature is started
+#
+NAME=$1
+ORIGIN=$2
+BRANCH=$3
+BASE=$4
+
+# Implement your script here.
+# To terminate the git-flow action, return a non-zero exit code.
+exit 0