我尝试使用终端将带有图片的文件夹推送到Github,但每次total
之后卡住了,如下所示。
Counting objects: 203, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (176/176), done.
Writing objects: 100% (203/203), 22.12 MiB | 15.70 MiB/s, done.
Total 203 (delta 23), reused 0 (delta 0)
然后我尝试使用 Github Desktop 将提交同步到Github,但它让我想起了fatal: unable to access 'https://github.com/[name]/[repo]': Failed to connect to github.com port 443: Operation timed out
(128)
。我认为这完全是因为文件的大小,我试图只将一个图像(大小50KB)推送到Github。但是,它仍然无法工作并陷入同样的境地。那么如何将带有图像的文件夹快速上传或推送到我的Github远程仓库???
答案 0 :(得分:0)
首先,作为mentioned here,确保推送实际上已冻结。它可能只需要比平常更长的时间。
其次,你确实可以添加,提交和推送图片(最好带脚本)
您还可以拥有local network configuration issue(与Git无关)
第三,确保使用Git的最新版本(GitHub Desktop没有;最新的82770ca使用去年6月的git版本2.9.0.windows.1),推送时有更精确的进度指示(实际上,it will be in Git 2.10,应该在两周内发布。) 并set your buffersize accordingly。
最后,对于非常大的二进制文件(或大量二进制文件),您还可以考虑GitHub LFS。