Bootstrap

android 项目多电脑共用github及github项目迁移

背景:最新需要将公司的项目在本地电脑进行使用,将项目迁移到本地电脑。

操作步骤:

ssh 公钥绑定github上 :

https://blog.csdn.net/mo_sss/article/details/137910910

用github进行克隆时无法下载(已将本地创建的公钥上传github)但还是报
fatal: Authentication failed for ‘https://github.com/zhiyicx/plus-ROG-android.git/’
**

首先:检查是否能连上github.com

**

ssh -T git@github.com

在这里插入图片描述
将C:\Users\用户.ssh 下的known_hosts中有关ip的删除,我将所有ip都删除掉了再次进行尝试
在这里插入图片描述

解决:

在用git进行克隆时会弹出一个username for “https://github.con” 及 password for弹窗:
前者是github所绑定的邮箱账号,后者是 授权token令牌: https://blog.csdn.net/xiaochenXIHUA/article/details/143420510

设置好之后再进行克隆报:
the remote end hung up unexpectedly9.43 MiB | 262.00 KiB/s fatal: early EOF
查看了几篇文章,可能是速度及缓存问题,然后进行设置:

//3G
git config --global http.postBuffer 3194304000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

设置好之后发现用http方式进行克隆还是有问题,于是采用ssh方式进行克隆,最后克隆成功,如果不行尝试换个网络
在这里插入图片描述
参考链接:
https://blog.csdn.net/mevicky/article/details/107354617
https://blog.csdn.net/xiaochenXIHUA/article/details/143420510
https://blog.csdn.net/yy339452689/article/details/120076662
https://blog.csdn.net/mo_sss/article/details/137910910
https://www.jianshu.com/p/5996bc33d789

;