GIT设置SSH公钥
使用git,一般可以使用http/https或者ssh连接。
使用http/https连接不需要额外的配置,但是如果工程中有一些比较大的文件,在push的时候经常会出现fatal: The remote end hung up unexpectedly的错误。
解决的办法是切换成使用ssh连接。这需要配置一个ssh公钥。步骤如下
1)进入$HOME/.ssh目录。如果没有创建过ssh密钥,目录为空。
$ cd ~/.ssh
$ ls
2)使用你的邮箱用ssh-keygen命令创建密码对。
$ ssh-keygen -t rsa -C "yourname@hotmail.com"
注意ssh-keygen命令中间没有空格,如果在ssh后面加上空格,会得到Bad escape character 'ygen'.的错误。
3)把公钥文件id_rsa.pub导入到git工程的公钥列表中
$ ls
github_rsagithub_rsa.pubid_rsaid_rsa.pub
4)把remote地址改成ssh。
【GIT设置SSH公钥】$ git remote remove origin
$ git remote add origin git@***.git
$ git branch -u origin/master master
$ git remote -v
推荐阅读
- 第6.2章(设置属性)
- gitlab|gitlab 通过备份还原 admin/runner 500 Internal Server Error
- SSH|SSH 免密
- gitlab|Gitlab升级(12.2.1到14.6.4)
- ssh生成公钥秘钥
- 15、IDEA学习系列之其他设置(生成javadoc、缓存和索引的清理等)
- 常用git命令总结
- performSelectorOnMainThread:withObject:waitUntilDone:参数设置为NO或YES的区别
- spring|spring boot中设置异步请求默认使用的线程池
- Python绘制小红花