Can't push folders containing image files #77231
-
Select Topic AreaQuestion BodyHi there. I am one day in to GitHub and Pages. Firstly, a huge thanks for this resource! My project is a simple personal web blog of static html. I've managed to configure the various repo's etc and successfully pushed all my html over which is now live. What I'm really struggling with is getting all the images across. They are 99% .jpegs, with a few .movs in there. I'm working out of a terminal on a Mac Powerbook, running Git 2.39.2 that I got hold off by downloading the Mac dev toolkit. I can push a single jpeg, but when I try and push a folder, it just hangs after the line that starts 'Total'. No error message. I have to Ctl-Z out of it. I've seen comments on forums about Postbuffer and tried that without success. I'd love to hear any ideas :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi there, Check File Sizes: GitHub has a 100 MB limit per file. For large files, use Git LFS. Hope that helps! |
Beta Was this translation helpful? Give feedback.
-
Have you successfully pushed the changes on another laptop or PC, particularly one with Intel architecture or a VPS? |
Beta Was this translation helpful? Give feedback.
Hi there. Many thanks for reaching out. I've sorted it. The answer appears to have been the postBuffer variable, which I found referenced on some other threads. This was set to 1024 on my system. I set it to 15Mb and everything worked sweet as a nut :) Subsequently I got into further muddles with the head getting ahead of Main in a way I couldn't explain, but I resolved that by simply recloning the repository fro remote onto my system and working off that new local repo, which again feels like a great cure-all. Thanks again for trying to help.