Skip to content

Commit

Permalink
Adding an extra line to the output for extra spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoramite authored and nvie committed Jun 29, 2010
1 parent b681b45 commit 4de01f2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions git-flow-feature
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ cmd_list() {
warn "You can start a new feature branch:"
warn ""
warn " git flow feature start <name> [<base>]"
warn ""
exit 0
fi
current_branch=$(git branch | grep '^\* ' | grep -v 'no branch' | sed 's/^* //g')
Expand Down
1 change: 1 addition & 0 deletions git-flow-hotfix
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ cmd_list() {
warn "You can start a new hotfix branch:"
warn ""
warn " git flow hotfix start <name> [<base>]"
warn ""
exit 0
fi
current_branch=$(git branch | grep '^\* ' | grep -v 'no branch' | sed 's/^* //g')
Expand Down
2 changes: 1 addition & 1 deletion git-flow-release
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ cmd_list() {
warn "You can start a new release branch:"
warn ""
warn " git flow release start <name> [<base>]"

warn ""
exit 0
fi

Expand Down
1 change: 1 addition & 0 deletions git-flow-support
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ cmd_list() {
warn "You can start a new support branch:"
warn ""
warn " git flow support start <name> <base>"
warn ""
exit 0
fi
current_branch=$(git branch | grep '^\* ' | grep -v 'no branch' | sed 's/^* //g')
Expand Down

0 comments on commit 4de01f2

Please sign in to comment.