1.Github 私有库无法clone
新建了一个github的私有库,但是却一直无法clone,不断提示:
fatal: repository 'https://github.com/xxx.git/' not found
于是尝试将仓库改成public后
先remote 然后再 clone,可以成功
但是改回private后就无法clone,remote
如下图:
改成private后,尝试remote和clone,失败,提示not find
换成这种方式即可:
git clone http://username:password@remote 因为是私有库,得用这种方式
2.推送到远程仓库失败
提示如下:
发布到远程存储库时遇到错误: Git failed with a fatal error.
The remote end hung up unexpectedly
The remote end hung up unexpectedly
RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
Pushing to https://github.com/kevin66/Aircraft
Everything up-to-date
这是由于推送的文件太大导致的
解决方法:
执行 : git config http.postBuffer 5242880000
524288000 =1024*1024*500
若还是不行,可以将大小再设置大一些,我是试了两次才成功的,而且推送的过程耗时比较久