git私钥导入

git私钥导入

去用户主文件夹下,创建 .ssh 文件夹 创建config文件,内容如下

1
2
3
4
5
6
7
Host github.com
    User git
    HostName ssh.github.com
    Port 443
    IdentityFile ~/.ssh/你的密钥文件名
Host *
    IdentityFile ~/.ssh/你的密钥文件名

然后根据IdentityFile中你所填的密钥文件名,把密钥放进去就行 如果你在用linux,密钥要进行

1
chmod 600 密钥文件名

git第一次配置用户信息:

1
2
git config --global user.email 邮箱
git config --global user.name 名字

gpg导入

1
2
3
4
5
gpg --import ./gpg文件名
git config --global user.signingkey gpgkeyid
git config --global commit.gpgsign true
git config --global user.email 邮箱
git config --list
Licensed under CC BY-NC-SA 4.0
使用 Hugo 构建
主题 StackJimmy 设计