From fdef3bf2ea53c1a5ffbd6d8d73edcfd67070ca6e Mon Sep 17 00:00:00 2001 From: Xavier L'Heureux Date: Tue, 23 Jul 2019 11:48:16 -0400 Subject: [PATCH] Git hubflow --- plugins.md | 2 +- tools/git-hubflow.ion | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 tools/git-hubflow.ion diff --git a/plugins.md b/plugins.md index c902d17..e334e5e 100644 --- a/plugins.md +++ b/plugins.md @@ -199,7 +199,7 @@ Since Ion does not support autocompletion via plugins, a lot of oh-my-zsh plugin |--------------------------+--------------------------------| | github | Planned | |--------------------------+--------------------------------| -| git-hubflow | Planned | +| git-hubflow | Done | |--------------------------+--------------------------------| | gitignore | Not sure | |--------------------------+--------------------------------| diff --git a/tools/git-hubflow.ion b/tools/git-hubflow.ion new file mode 100644 index 0000000..bed2fd4 --- /dev/null +++ b/tools/git-hubflow.ion @@ -0,0 +1,14 @@ +# # git-hubflow plugin +# +# This plugin adds completion for [HubFlow](https://datasift.github.io/gitflow/) (GitFlow for GitHub), as well as some +# aliases for common commands. HubFlow is a git extension to make it easy to use GitFlow with GitHub. Based on the +# original gitflow extension for git. +# +# The hubflow tool has to be [installed](https://github.com/datasift/gitflow#installation) separately. + +alias ghf='git hf' +alias ghff='git hf feature' +alias ghfr='git hf release' +alias ghfh='git hf hotfix' +alias ghfs='git hf support' +alias ghfu='git hf update' -- GitLab