Added functions for assuring branches are in place before doing the actual work.
- gitflow_require_local_branch()
- gitflow_require_remote_branch()
- gitflow_require_branch()
diff --git a/test-sh-setup b/test-sh-setup
new file mode 100755
index 0000000..ad7126c
--- /dev/null
+++ b/test-sh-setup
@@ -0,0 +1,9 @@
+#!/bin/sh
+. gitflow-sh-setup
+
+gitflow_require_branch 'master'
+gitflow_require_branch 'develop'
+gitflow_require_branch 'origin/develop'
+gitflow_require_branch 'origin/master'
+
+echo "All OK."