diff options
author | Wanbok Choi <choi@wanbok.com> | 2016-05-14 20:45:55 +0900 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-05-14 13:45:55 +0200 |
commit | 615af65087d94fd6474f666c1ab0e11efc65a7f5 (patch) | |
tree | 0698504e2f2c27458acc82d7a78668320fee979d | |
parent | 5aa7e0f60049b6501d3587dcd4355706ce1cbe34 (diff) | |
download | zsh-615af65087d94fd6474f666c1ab0e11efc65a7f5.tar.gz zsh-615af65087d94fd6474f666c1ab0e11efc65a7f5.tar.bz2 zsh-615af65087d94fd6474f666c1ab0e11efc65a7f5.zip |
Add 'gcn!' for the '--no-edit' option. (#4830)
Remove the '-s' option from 'gcan!'
Add 'gcans!'. It is the same as the current 'gcan! -s'.
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 95ce1ae26..220bf259b 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -58,9 +58,11 @@ alias gbss='git bisect start' alias gc='git commit -v' alias gc!='git commit -v --amend' +alias gcn!='git commit -v --no-edit --amend' alias gca='git commit -v -a' alias gca!='git commit -v -a --amend' -alias gcan!='git commit -v -a -s --no-edit --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 gcb='git checkout -b' alias gcf='git config --list' |