diff options
author | Robby Russell <robby@planetargon.com> | 2011-08-30 21:04:04 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-08-30 21:04:04 -0700 |
commit | 91d02ffbc12ae7e26456f212667656d325e4a36b (patch) | |
tree | 87204cc212214e56aff9d26f8c36a64ae72f0cdd /plugins | |
parent | 9d67d75b0ad62242e60db1bd6d22ae7ea252c7bc (diff) | |
parent | bd6aba9c68db06758593e9ef707839c2f0271235 (diff) | |
download | zsh-91d02ffbc12ae7e26456f212667656d325e4a36b.tar.gz zsh-91d02ffbc12ae7e26456f212667656d325e4a36b.tar.bz2 zsh-91d02ffbc12ae7e26456f212667656d325e4a36b.zip |
Merge pull request #575 from mr-szymanski/master
Add git alias
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 5132b639a..4fcf9425d 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -29,6 +29,10 @@ alias glg='git log --stat --max-count=5' compdef _git glg=git-log alias glgg='git log --graph --max-count=5' compdef _git glgg=git-log +alias gss='git status -s' +compdef _git gss=git-status +alias ga='git add' +compdef _git ga=git-add # Git and svn mix alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' |