feat(git): add aliases for merge sign and verify

Adds the following aliases:
  - gmS: GPG-sign the resulting merge commit.
  - gmV: Verify that the tip commit of the side branch being merged is
  signed with a valid key, i.e. a key that has a valid uid: in the
  default trust model, this means the signing key has been signed by a
  trusted key. If the tip commit of the side branch is not signed with a
  valid key, the merge is aborted.
This commit is contained in:
Oskar Grunning 2019-03-21 15:54:13 +01:00
parent 45927aa8a2
commit 974f834010
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,8 @@ alias glc='git shortlog --summary --numbered'
alias gm='git merge'
alias gmC='git merge --no-commit'
alias gmF='git merge --no-ff'
alias gmS='git merge -S'
alias gmV='git merge --verify-signatures'
alias gma='git merge --abort'
alias gmt='git mergetool'