From 9b95c98d0a2b646cadaf1e6a214d1d184d146bed Mon Sep 17 00:00:00 2001 From: Michael Nikitochkin Date: Thu, 13 Feb 2014 10:37:55 +0200 Subject: [PATCH] :panda_face: Updated autocomplete list of hubflow `git hf help` return: ``` usage: git hf Available subcommands are: init Initialize a new git repo with support for the branching model. feature Manage your feature branches. release Manage your release branches. hotfix Manage your hotfix branches. push Push the changes from your current branch (plus any new tags) back upstream. pull Pull upstream changes down into your master, develop, and current branches. update Pull upstream changes down into your master and develop branches. version Shows version information. Try 'git hf help' for details. ``` Added missed `help`, `push` and `pull` subcommands. --- plugins/git-hubflow/git-hubflow.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/git-hubflow/git-hubflow.plugin.zsh b/plugins/git-hubflow/git-hubflow.plugin.zsh index a09f88391..cb24e46fb 100644 --- a/plugins/git-hubflow/git-hubflow.plugin.zsh +++ b/plugins/git-hubflow/git-hubflow.plugin.zsh @@ -37,7 +37,10 @@ _git-hf () 'init:Initialize a new git repo with support for the branching model.' 'feature:Manage your feature branches.' 'release:Manage your release branches.' + 'help:Show available commands' 'hotfix:Manage your hotfix branches.' + 'push:Push the changes from your current branch (plus any new tags) back upstream.' + 'pull:Pull upstream changes down into your master, develop, and current branches.' 'support:Manage your support branches.' 'update:Pull upstream changes down into your master and develop branches.' 'version:Shows version information.'