Skip to content

Commit

Permalink
Fix wrong labels
Browse files Browse the repository at this point in the history
  • Loading branch information
jbking committed Jan 17, 2011
1 parent c05e622 commit c58f8c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions git-flow-completion.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -188,17 +188,17 @@ __git-flow-feature ()

local -a subcommands
subcommands=(
'start:Start a new hotfix branch'
'finish:Finish a hotfix branche.'
'list:List all your hotfix branches. (Alias to `git flow hotfix`)'
'start:Start a new feature branch'
'finish:Finish a feature branche.'
'list:List all your feature branches. (Alias to `git flow feature`)'
'publish: public'
'track: track'
'diff: diff'
'rebase: rebase'
'checkout: checkout'
'pull: pull'
)
_describe -t commands 'git flow hotfix' subcommands
_describe -t commands 'git flow feature' subcommands
_arguments \
-v'[Verbose (more) output]'
;;
Expand Down

0 comments on commit c58f8c2

Please sign in to comment.