Skip to content

Commit

Permalink
Add 'gcn!' for the '--no-edit' option. (ohmyzsh#4830)
Browse files Browse the repository at this point in the history
Remove the '-s' option from 'gcan!'
Add 'gcans!'. It is the same as the current 'gcan! -s'.
  • Loading branch information
wanbok authored and atsuya committed Jul 23, 2016
1 parent 40fe0fc commit 01bffec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/git/git.plugin.zsh
Expand Up @@ -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'
Expand Down

0 comments on commit 01bffec

Please sign in to comment.