Git生成SSH密钥
1. 配置用户名
git config --global user.name "xiexie"
2. 配置邮箱
git config --global user.email "xiexie@xxx.com.cn"
此时,会在C:\Users\Administrator目录下生成.gitconfig配置文件
3. 生成公钥和私钥
ssh-keygen -t rsa -C "xxxx@qq.com"
按3次Enter,不需要设置名称与密码
# 查看公钥 cat ~/.ssh/id_rsa.pub
路径是C:\Users\Administrator\.ssh
4. tx-coding配置个人公钥
# // 创建新的 SSH 私钥与公钥秘钥对,输入你的邮箱作为标签 ssh-keygen -m PEM -t ed25519 -C "xiexie@xxx.com.cn" # // 推荐使用默认地址 Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] # // 此处直接回车即可;若设置密码,则每次使用 SSH 方式推送代码时都会要求输入密码 Enter passphrase (empty for no passphrase):
打开上文中生成的秘钥对的地址(通常为 ~/.ssh/)找到后缀为 pub 的公钥文件,使用 cat 命令输出所有内容并复制。
完成后,在本地运行首次连接时的公钥认证命令: ssh -T git@e.coding.net
欢迎一起来学习和指导,谢谢关注!
本文来自博客园,作者:xiexie0812,转载请注明原文链接:https://www.cnblogs.com/mask-xiexie/p/16280848.html