博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
生成git,ssh的key
阅读量:6129 次
发布时间:2019-06-21

本文共 543 字,大约阅读时间需要 1 分钟。

git clone ssh 代码:
报错:
Warning: Permanently added 'gitee.com,120.55.226.24' (ECDSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
因为在GIT上没有对SSH的Key设置:
Key获取方式
1:执行 cd ~/.ssh,查看是否存在文件
2:执行 $ git config --global user.name "xxxxx" ===> 设置git用户名
3:执行 $ git config --global user.email "xxxx@xx.com" ===> 设置git账号
4:执行 $ ssh-keygen -t rsa -C "xxxx@xx.com" 生成秘钥
5:查看生成的文件 (i d_rsa    id_rsa.pub  known_hosts),进入id_rsa.pub(vim id_rsa.pub)
 
git==》设置
 

 

 

转载于:https://www.cnblogs.com/wangcf/p/10414087.html

你可能感兴趣的文章
spring 集成的项目,Properties配置文件外移
查看>>
Codeforces 842B Gleb And Pizza【几何,水】
查看>>
Spring与Junit测试整合
查看>>
Free Pascal初次体验(有亮点哦)
查看>>
2017-5-15 if语句的使用
查看>>
牛客网剑指offer-Java
查看>>
[UI]抽屉菜单DrawerLayout分析(三)
查看>>
黄聪:使用Python中的HTMLParser、cookielib抓取和解析网页、从HTML文档中提取链接、图像、文本、Cookies(二)...
查看>>
黄聪:Wordpress如何不显示(只显示)置顶文章
查看>>
黄聪:使用Add-on SDK开发火狐扩展
查看>>
javascript 网页中实现一个计算当年还剩多少时间的倒数计时程序
查看>>
hibernate_exercise-many- to-one(1)
查看>>
防止用户同时使用一个存储过程
查看>>
(转载)使用SQL-Server创建一个银行数据管理系统Ⅰ
查看>>
SQL Server:查询当前服务器有多少连接请求
查看>>
oracle开发技巧
查看>>
toString()方法
查看>>
EXCEL函数2—vlookup函数等
查看>>
iOS 一些UI控件的属性
查看>>
Python检测URL状态
查看>>