-
When pushing a copy of this repository to a new repository for the first time, I'm getting a strange
even though there is no such file in the repository or working directory? Repro:
The git push seems to succeed but in the terminal on my Mac, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
So, when I originally set up the repository as a regular repository, I included the webkit libraries. Then, when I flipped it to a template, GitHub complained that files greater than 50mb are too big for templates. Because of how Git works, you're getting a copy of that old library in the history even though it's no longer used. The error message you are seeing is basically boils down to GitHub complaining about a large file in the history and recommending you install Git LFS. If you use something like GitHub Desktop it can set up Git LFS for you on your repository with a click, or you can look up how to do it at the command line. |
Beta Was this translation helpful? Give feedback.
So, when I originally set up the repository as a regular repository, I included the webkit libraries. Then, when I flipped it to a template, GitHub complained that files greater than 50mb are too big for templates. Because of how Git works, you're getting a copy of that old library in the history even though it's no longer used.
The error message you are seeing is basically boils down to GitHub complaining about a large file in the history and recommending you install Git LFS. If you use something like GitHub Desktop it can set up Git LFS for you on your repository with a click, or you can look up how to do it at the command line.