summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorsimlegate <simlegate@163.com>2013-05-05 16:35:40 +0800
committersimlegate <simlegate@163.com>2013-05-05 16:35:40 +0800
commitcf3a03d45e6b4eb642238bbd7b6aeca1fd1bc868 (patch)
tree30d4ec512151a0cfd7742bb7fd47ff45cbbf5cb0 /plugins
parentb34aee7f76c4cd37e643a330409ac580776b3837 (diff)
downloadzsh-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.zsh3
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'