my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.3 KiB

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