diff options
author | Mark Szymanski <mrman208@me.com> | 2011-08-27 16:23:49 -0500 |
---|---|---|
committer | Mark Szymanski <mrman208@me.com> | 2011-08-27 16:23:49 -0500 |
commit | bd6aba9c68db06758593e9ef707839c2f0271235 (patch) | |
tree | 7d20c6dc56c0179e08b13a3cc9061cc91f023ef2 | |
parent | 1fb141cfb51f753fe997d17c12ac810ad321f36f (diff) | |
download | zsh-bd6aba9c68db06758593e9ef707839c2f0271235.tar.gz zsh-bd6aba9c68db06758593e9ef707839c2f0271235.tar.bz2 zsh-bd6aba9c68db06758593e9ef707839c2f0271235.zip |
Add an alias for ga --> git add, too
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 37bfd383a..4fcf9425d 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -31,6 +31,8 @@ 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' |