summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Mekhonoshin <mehonoshin@sc.vsu.ru>2012-11-24 11:23:44 +0400
committerStanislav Mekhonoshin <mehonoshin@sc.vsu.ru>2012-11-24 11:23:44 +0400
commit7991562e768733be9565fb05615c3f0f83ba4eb0 (patch)
tree4fb097be587b87b97cf48be0a4870bd28932f9cb
parentc2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 (diff)
downloadzsh-7991562e768733be9565fb05615c3f0f83ba4eb0.tar.gz
zsh-7991562e768733be9565fb05615c3f0f83ba4eb0.tar.bz2
zsh-7991562e768733be9565fb05615c3f0f83ba4eb0.zip
Added gwc(git whatchanged alias)
Allows to view commit history in extended way
-rw-r--r--plugins/git/git.plugin.zsh1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index d3d3f702a..03ad2edb0 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -38,6 +38,7 @@ alias gm='git merge'
compdef _git gm=git-merge
alias grh='git reset HEAD'
alias grhh='git reset HEAD --hard'
+alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'
# Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'