Unverified Commit 08751210 authored by Nick Revin's avatar Nick Revin Committed by GitHub
Browse files

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 =)
parent bd5d0066
......@@ -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'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment