From e7bc8b6e097e60c99833903b9710c2378822c345 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sat, 10 Jul 2021 12:12:39 +0430 Subject: [PATCH 1/2] feat: add new aliases to access sub-commands helps Signed-off-by: Milad Nekofar --- zsh-git-flow-avh.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh-git-flow-avh.zsh b/zsh-git-flow-avh.zsh index 8fd35d5..be80c8c 100644 --- a/zsh-git-flow-avh.zsh +++ b/zsh-git-flow-avh.zsh @@ -27,6 +27,7 @@ alias gflfm!='git flow feature pull --force' alias gflfx='git flow feature delete' alias gflfx!='git flow feature delete --force' alias gflfn='git flow feature rename' +alias gflfh='git flow feature help' alias gflb='git flow bugfix' alias gflbl='git flow bugfix list' @@ -42,6 +43,7 @@ alias gflbm='git flow bugfix pull' alias gflbx='git flow bugfix delete' alias gflbx!='git flow bugfix delete --force' alias gflbn='git flow bugfix rename' +alias gflbh='git flow bugfix help' alias gflr='git flow release' alias gflrl='git flow release list' @@ -53,6 +55,7 @@ alias gflrt='git flow release track' alias gflrx='git flow release delete' alias gflrx!='git flow release delete --force' alias gflrr='git flow release rebase' +alias gflrh='git flow release help' alias gflh='git flow hotfix' alias gflhl='git flow hotfix list' @@ -63,8 +66,10 @@ alias gflhx='git flow hotfix delete' alias gflhx!='git flow hotfix delete --force' alias gflhr='git flow hotfix rebase' alias gflhn='git flow hotfix rename' +alias gflhh='git flow hotfix help' alias gfls='git flow support' alias gflsl='git flow support list' alias gflss='git flow support start' alias gflsr='git flow support rebase' +alias gflsh='git flow support help' From 86f362340b73389cd6d775142f538ab69544fa8b Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sat, 10 Jul 2021 12:23:08 +0430 Subject: [PATCH 2/2] chore(release): 1.2.0 --- .versionrc.json | 2 +- CHANGELOG.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.versionrc.json b/.versionrc.json index ce50f05..70e0b22 100644 --- a/.versionrc.json +++ b/.versionrc.json @@ -1,7 +1,7 @@ { "header": "# Changelog", "skip": { - "commit": true, + "commit": false, "tag": true }, "scripts": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f8bc0c..9087e64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## [1.2.0](https://github.com/nekofar/zsh-git-flow-avh/compare/v1.1.0...v1.2.0) (2021-07-10) + + +### Features + +* add new aliases to access sub-commands helps ([e7bc8b6](https://github.com/nekofar/zsh-git-flow-avh/commit/e7bc8b6e097e60c99833903b9710c2378822c345)) + ## [1.1.0](https://github.com/nekofar/zsh-git-flow-avh/compare/v1.0.1...v1.1.0) (2020-11-09)