diff options
author | savimat <mat@savi.com.au> | 2016-10-03 09:11:26 +1000 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-10-03 01:11:26 +0200 |
commit | 6d975f72589dbb6e44084841cddf9ea153990eb8 (patch) | |
tree | 26bc5039b4e1e0ed663f21aafffd93c1f64c69b0 /plugins | |
parent | cd44246415d557bc9ba8d7c74acdcc0a44d10e34 (diff) | |
download | zsh-6d975f72589dbb6e44084841cddf9ea153990eb8.tar.gz zsh-6d975f72589dbb6e44084841cddf9ea153990eb8.tar.bz2 zsh-6d975f72589dbb6e44084841cddf9ea153990eb8.zip |
Add alias for signed git commit with message (#5390)
Signed-off-by: Mat Munn <mat@savi.com.au>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index ea9ff8269..28fb253dd 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -65,6 +65,7 @@ alias gca!='git commit -v -a --amend' alias gcan!='git commit -v -a --no-edit --amend' alias gcans!='git commit -v -a -s --no-edit --amend' alias gcam='git commit -a -m' +alias gcsm='git commit -s -m' alias gcb='git checkout -b' alias gcf='git config --list' alias gcl='git clone --recursive' |