Adding extra instructions when running the list option without any corresponding branches found.
diff --git a/git-flow-support b/git-flow-support
index 1357d1f..ab98fd3 100644
--- a/git-flow-support
+++ b/git-flow-support
@@ -64,6 +64,10 @@
 	support_branches=$(echo "$(git_local_branches)" | grep "^$PREFIX")
 	if [ -z "$support_branches" ]; then
 		warn "No support branches exist."
+                warn ""
+                warn "You can start a new support branch:"
+                warn ""
+                warn "    git flow support start <name> <base>"
 		exit 0
 	fi
 	current_branch=$(git branch | grep '^\* ' | grep -v 'no branch' | sed 's/^* //g')