]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / git-hubflow / README.md
1 # git-hubflow plugin
2
3 This plugin adds completion for [HubFlow](https://datasift.github.io/gitflow/) (GitFlow for GitHub), as well as some
4 aliases for common commands. HubFlow is a git extension to make it easy to use GitFlow with GitHub. Based on the
5 original gitflow extension for git.
6
7 The hubflow tool has to be [installed](https://github.com/datasift/gitflow#installation) separately.
8
9 To use it, add `git-hubflow` to the plugins array in your zshrc file:
10
11 ```zsh
12 plugins=(... git-hubflow)
13 ```
14
15 ## Aliases
16
17 | Alias | Command          | Description                                                      |
18 |-------|------------------|------------------------------------------------------------------|
19 | ghf   | `git hf`         | Print command overview                                           |
20 | ghff  | `git hf feature` | Manage your feature branches                                     |
21 | ghfr  | `git hf release` | Manage your release branches                                     |
22 | ghfh  | `git hf hotfix`  | Manage your hotfix branches                                      |
23 | ghfs  | `git hf support` | Manage your support branches                                     |
24 | ghfu  | `git hf update`  | Pull upstream changes down into your master and develop branches |