dotfiles/.dotfiles/docs/git.md

12 lines
161 B
Markdown
Raw Permalink Normal View History

2021-01-12 09:52:17 +00:00
# Git
## Setup GPG signing key
```
$ gpg --list-secret-keys --keyid-format LONG
...
$ git config --global user.signingkey <keyid>
$ export GPG_TTY=$(tty)
```