Skip to content

Commit

Permalink
Merge branch 'release/v1.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jul 10, 2021
2 parents ccdefd6 + 86f3623 commit 8efdd6e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .versionrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"header": "# Changelog",
"skip": {
"commit": true,
"commit": false,
"tag": true
},
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
5 changes: 5 additions & 0 deletions zsh-git-flow-avh.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'

0 comments on commit 8efdd6e

Please sign in to comment.