为gitlab添加GPG
为gitlab添加GPG
下载安装GnuPG
自行下载安装:https://gnupg.org/download/
安装结束后查看安装信息:
gpg --version
生成
执行 gpg --full-generate-key
即可生成一对 gpg key pair
输入两次密码
添加到gitlab
查看gpg --list-secret-keys
导出key
gpg --armor --export 你的keyID
打开命令行执行
git config --global user.name
git config --global user.email
git config --global commit.gpgsign true
git config --global tag.gpgsign true
git config --global gpg.program "C:\Program Files (x86)\GnuPG\bin\gpg.exe"
git config --global user.signingkey 你的keyID