diff options
author | Bruno Volcov <volcov.bruno@gmail.com> | 2015-10-09 18:47:48 -0300 |
---|---|---|
committer | Bruno Volcov <volcov.bruno@gmail.com> | 2015-10-09 18:47:48 -0300 |
commit | 252078dd6c8adc78c6c9d3564dd16fca5aa146a1 (patch) | |
tree | 9d95bef4da51800897e3294c233b0c5ca6bab57e /plugins | |
parent | 2522ab4504376db4410bfa784dd1d582538fd576 (diff) | |
download | zsh-252078dd6c8adc78c6c9d3564dd16fca5aa146a1.tar.gz zsh-252078dd6c8adc78c6c9d3564dd16fca5aa146a1.tar.bz2 zsh-252078dd6c8adc78c6c9d3564dd16fca5aa146a1.zip |
add alias to sort by version
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 4f2745038..15caab28f 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -212,6 +212,7 @@ alias gsts='git stash show --text' alias gsu='git submodule update' alias gts='git tag -s' +alias gtv='git tag | sort -V' alias gunignore='git update-index --no-assume-unchanged' alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1' |