1
0
Fork 0

Add git alias for `gcM` (GPG-sign the commit)

pull/1227/head
Andrew Mager 8 years ago
parent 4f19700919
commit dcd540d397
No known key found for this signature in database
GPG Key ID: 466C0F7D316A8A5F

@ -53,6 +53,7 @@ Aliases
- `gc` records changes to the repository. - `gc` records changes to the repository.
- `gca` stages all modified and deleted files. - `gca` stages all modified and deleted files.
- `gcm` records changes to the repository with the given message. - `gcm` records changes to the repository with the given message.
- `gcM` same as `gcm` but adds a GPG signature to the commit.
- `gco` checks out a branch or paths to work tree. - `gco` checks out a branch or paths to work tree.
- `gcO` checks out hunks from the index or the tree interactively. - `gcO` checks out hunks from the index or the tree interactively.
- `gcf` amends the tip of the current branch using the same log message as - `gcf` amends the tip of the current branch using the same log message as

@ -45,6 +45,7 @@ alias gbS='git show-branch -a'
alias gc='git commit --verbose' alias gc='git commit --verbose'
alias gca='git commit --verbose --all' alias gca='git commit --verbose --all'
alias gcm='git commit --message' alias gcm='git commit --message'
alias gcM='git commit --gpg-sign --message'
alias gco='git checkout' alias gco='git checkout'
alias gcO='git checkout --patch' alias gcO='git checkout --patch'
alias gcf='git commit --amend --reuse-message HEAD' alias gcf='git commit --amend --reuse-message HEAD'

Loading…
Cancel
Save