Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 651 Bytes

gpg-install.md

File metadata and controls

33 lines (26 loc) · 651 Bytes

Install GPG

pacman -S gnupg

# Generating a new GPG key
gpg --full-generate-key
git config --global commit.gpgsign true
git config --global credential.helper /usr/lib/git-core/git-credential-libsecret

GPG key is added to git

gpg --list-secret-keys --keyid-format=long
git config --global user.signingkey YOURKEY

# Generate public key for Github
gpg --armor --export YOURKEY

Edit file ~/.bashrc with text editor and add the following lines

#  GPG key
export GPG_TTY=$(tty)

Edit file ~/.zshrc with text editor and add the following lines

#  GPG key
export GPG_TTY=$TTY