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