summaryrefslogtreecommitdiff
path: root/plugins/git-flow/README.md
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2022-01-01 02:26:11 -0600
committerTuowen Zhao <ztuowen@gmail.com>2022-01-01 02:26:11 -0600
commit49edbf438ed690c76e6b2af80368c59404cf0167 (patch)
tree129b3adb2f5f39a1329a426a3b7d51ed2c2290c1 /plugins/git-flow/README.md
parent1bc186dabe12b3d01b2257e82f3a104c48b8b3c7 (diff)
parent78c91ccbf99c77bd4d9cdb74279a40776721f66d (diff)
downloadzsh-49edbf438ed690c76e6b2af80368c59404cf0167.tar.gz
zsh-49edbf438ed690c76e6b2af80368c59404cf0167.tar.bz2
zsh-49edbf438ed690c76e6b2af80368c59404cf0167.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'plugins/git-flow/README.md')
-rw-r--r--plugins/git-flow/README.md43
1 files changed, 26 insertions, 17 deletions
diff --git a/plugins/git-flow/README.md b/plugins/git-flow/README.md
index 9c25dec83..fc8ccf0a0 100644
--- a/plugins/git-flow/README.md
+++ b/plugins/git-flow/README.md
@@ -10,22 +10,31 @@ plugins=(... git-flow)
## Aliases
-| Alias | Command | Description |
-|---------|----------------------------|----------------------------------------|
-| `gfl` | `git flow` | Git-Flow command |
-| `gfli` | `git flow init` | Initialize git-flow repository |
-| `gcd` | `git checkout develop` | Check out develop branch |
-| `gch` | `git checkout hotfix` | Check out hotfix branch |
-| `gcr` | `git checkout release` | Check out release branch |
-| `gflf` | `git flow feature` | List existing feature branches |
-| `gflh` | `git flow hotfix` | List existing hotfix branches |
-| `gflr` | `git flow release` | List existing release branches |
-| `gflfs` | `git flow feature start` | Start a new feature: `gflfs <name>` |
-| `gflhs` | `git flow hotfix start` | Start a new hotfix: `gflhs <version>` |
-| `gflrs` | `git flow release start` | Start a new release: `gflrs <version>` |
-| `gflff` | `git flow feature finish` | Finish feature: `gflff <name>` |
-| `gflfp` | `git flow feature publish` | Publish feature: `gflfp <name>` |
-| `gflhf` | `git flow hotfix finish` | Finish hotfix: `gflhf <version>` |
-| `gflrf` | `git flow release finish` | Finish release: `gflrf <version>` |
+| 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 <name>` |
+| `gflffc` | `gflff ${$(git_current_branch)#feature/}` | Finish current feature |
+| `gflfp` | `git flow feature publish` | Publish feature: `gflfp <name>` |
+| `gflfpc` | `gflfp ${$(git_current_branch)#feature/}` | Publish current feature |
+| `gflfpll` | `git flow feature pull` | Pull remote feature: `gflfpll <remote> <name>` |
+| `gflfs` | `git flow feature start` | Start a new feature: `gflfs <name>` |
+| `gflh` | `git flow hotfix` | List existing hotfix branches |
+| `gflhf` | `git flow hotfix finish` | Finish hotfix: `gflhf <version>` |
+| `gflhfc` | `gflhf ${$(git_current_branch)#hotfix/}` | Finish current hotfix |
+| `gflhp` | `git flow hotfix publish` | Publish hostfix: `gflhp <version>` |
+| `gflhpc` | `gflhp ${$(git_current_branch)#hotfix/}` | Finish current hotfix |
+| `gflhs` | `git flow hotfix start` | Start a new hotfix: `gflhs <version>` |
+| `gfli` | `git flow init` | Initialize git-flow repository |
+| `gflr` | `git flow release` | List existing release branches |
+| `gflrf` | `git flow release finish` | Finish release: `gflrf <version>` |
+| `gflrfc` | `gflrf ${$(git_current_branch)#release/}` | Finish current release |
+| `gflrp` | `git flow release publish` | Publish release: `gflrp <version>` |
+| `gflrpc` | `gflrp ${$(git_current_branch)#release/}` | Publish current release |
+| `gflrs` | `git flow release start` | Start a new release: `gflrs <version>` |
[More information about `git-flow` commands](https://github.com/nvie/gitflow/wiki/Command-Line-Arguments).