X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fgit-flow%2FREADME.md;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fgit-flow%2FREADME.md;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=fc8ccf0a09237bd327c6b56fb9e81fdd91497903;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/git-flow/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/git-flow/README.md deleted file mode 100644 index fc8ccf0..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/git-flow/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# Git-Flow plugin - -This plugin adds completion and aliases for the [`git-flow` command](https://github.com/nvie/gitflow). - -To use it, add `git-flow` to the plugins array in your zshrc file: - -```zsh -plugins=(... git-flow) -``` - -## Aliases - -| Alias | Command | Description | -| --------- | ----------------------------------------- | ---------------------------------------------- | -| `gcd` | `git checkout develop` | Check out develop branch | -| `gch` | `git checkout hotfix` | Check out hotfix branch | -| `gcr` | `git checkout release` | Check out release branch | -| `gfl` | `git flow` | Git-Flow command | -| `gflf` | `git flow feature` | List existing feature branches | -| `gflff` | `git flow feature finish` | Finish feature: `gflff ` | -| `gflffc` | `gflff ${$(git_current_branch)#feature/}` | Finish current feature | -| `gflfp` | `git flow feature publish` | Publish feature: `gflfp ` | -| `gflfpc` | `gflfp ${$(git_current_branch)#feature/}` | Publish current feature | -| `gflfpll` | `git flow feature pull` | Pull remote feature: `gflfpll ` | -| `gflfs` | `git flow feature start` | Start a new feature: `gflfs ` | -| `gflh` | `git flow hotfix` | List existing hotfix branches | -| `gflhf` | `git flow hotfix finish` | Finish hotfix: `gflhf ` | -| `gflhfc` | `gflhf ${$(git_current_branch)#hotfix/}` | Finish current hotfix | -| `gflhp` | `git flow hotfix publish` | Publish hostfix: `gflhp ` | -| `gflhpc` | `gflhp ${$(git_current_branch)#hotfix/}` | Finish current hotfix | -| `gflhs` | `git flow hotfix start` | Start a new hotfix: `gflhs ` | -| `gfli` | `git flow init` | Initialize git-flow repository | -| `gflr` | `git flow release` | List existing release branches | -| `gflrf` | `git flow release finish` | Finish release: `gflrf ` | -| `gflrfc` | `gflrf ${$(git_current_branch)#release/}` | Finish current release | -| `gflrp` | `git flow release publish` | Publish release: `gflrp ` | -| `gflrpc` | `gflrp ${$(git_current_branch)#release/}` | Publish current release | -| `gflrs` | `git flow release start` | Start a new release: `gflrs ` | - -[More information about `git-flow` commands](https://github.com/nvie/gitflow/wiki/Command-Line-Arguments).