mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
feat(git): Add aliases for 'git commit -S -s [-m]' (#7616)
I thought it would be useful to add these aliases. There are already aliases for `git commit -S` and `git commit -s` but there is none for both simultaneously =)
This commit is contained in:
parent
bd5d0066b9
commit
08751210e3
1 changed files with 2 additions and 0 deletions
|
@ -97,6 +97,8 @@ alias gcp='git cherry-pick'
|
|||
alias gcpa='git cherry-pick --abort'
|
||||
alias gcpc='git cherry-pick --continue'
|
||||
alias gcs='git commit -S'
|
||||
alias gcss='git commit -S -s'
|
||||
alias gcssm='git commit -S -s -m'
|
||||
|
||||
alias gd='git diff'
|
||||
alias gdca='git diff --cached'
|
||||
|
|
Loading…
Reference in a new issue