From 002ade998ad394d85a192f9c14403064da442543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ve=C4=8De=C5=99a?= Date: Mon, 2 Mar 2015 08:19:47 +0100 Subject: [PATCH] added gcam command to git.plugin and fixed wrong alias in it --- plugins/git/git.plugin.zsh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 9da448814..27cfa31f3 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -24,7 +24,9 @@ compdef _git gc=git-commit alias gc!='git commit -v --amend' compdef _git gc!=git-commit alias gca='git commit -v -a' -compdef _git gc=git-commit +compdef _git gca=git-commit +alias gcam='git commit -a -m' +compdef _git gcam=git-commit alias gca!='git commit -v -a --amend' compdef _git gca!=git-commit alias gcmsg='git commit -m'