diff options
author | Robby Russell <robby@planetargon.com> | 2013-08-13 06:20:53 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-08-13 06:20:53 -0700 |
commit | 39a5e36c379659aa11ffde9bf20b9f70c60abdbf (patch) | |
tree | 88d946c2397f00222f1af556a1b1215c33ec005c | |
parent | 00183d119929f708e08575cef764a8e570d700f4 (diff) | |
parent | b5409fc0814a1be8fc8c9a36f89f5412bba4635c (diff) | |
download | zsh-39a5e36c379659aa11ffde9bf20b9f70c60abdbf.tar.gz zsh-39a5e36c379659aa11ffde9bf20b9f70c60abdbf.tar.bz2 zsh-39a5e36c379659aa11ffde9bf20b9f70c60abdbf.zip |
Merge pull request #1790 from simlegate/master
change git alias
-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 2ecc74eb6..6b91b4a72 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -22,6 +22,8 @@ alias gca='git commit -v -a' compdef _git gc=git-commit alias gca!='git commit -v -a --amend' compdef _git gca!=git-commit +alias gcmsg='git commit -m' +compdef _git gcmsg=git-commit alias gco='git checkout' compdef _git gco=git-checkout alias gcm='git checkout master' |