Add some example hook scripts.
diff --git a/hooks/pre-flow-feature-pull b/hooks/pre-flow-feature-pull
new file mode 100755
index 0000000..23baafb
--- /dev/null
+++ b/hooks/pre-flow-feature-pull
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# Ran before git flow feature pull.
+#
+# Positional arguments:
+# $1 The friendly name of the branch
+# $2 The remote to pull from
+# $3 The full branch name (including the feature prefix)
+#
+NAME=$1
+REMOTE=$2
+BRANCH=$3
+
+# Implement your script here.
+# To terminate the git-flow action, return a non-zero exit code.
+exit 0