diff options
author | simlegate <simlegate@163.com> | 2013-05-05 16:35:40 +0800 |
---|---|---|
committer | simlegate <simlegate@163.com> | 2013-05-05 16:35:40 +0800 |
commit | cf3a03d45e6b4eb642238bbd7b6aeca1fd1bc868 (patch) | |
tree | 30d4ec512151a0cfd7742bb7fd47ff45cbbf5cb0 /plugins | |
parent | b34aee7f76c4cd37e643a330409ac580776b3837 (diff) | |
download | zsh-cf3a03d45e6b4eb642238bbd7b6aeca1fd1bc868.tar.gz zsh-cf3a03d45e6b4eb642238bbd7b6aeca1fd1bc868.tar.bz2 zsh-cf3a03d45e6b4eb642238bbd7b6aeca1fd1bc868.zip |
rm alias gcm='git checkout master' and add alias gcm='git commit -m'
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 6c016aa6b..5277abc99 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -22,9 +22,10 @@ alias gca='git commit -v -a' compdef _git gc=git-commit alias gca!='git commit -v -a --amend' compdef _git gca!=git-commit +alias gcm='git commit -m' +compdef _git gcm=git-commit alias gco='git checkout' compdef _git gco=git-checkout -alias gcm='git checkout master' alias gr='git remote' compdef _git gr=git-remote alias grv='git remote -v' |