I have a repo using Git LFS. In most computers it works nicely. However, I have an specific PC in which the cloning freezes at a very specific file (always the same file, and at the same percentage). It does not show any smudge error or anything, just freezes. The actual command I am running is:
git clone git@bitbucket.org:myaccount/myrepo.git
If I go to Bitbucket I can download the file and it is correct.
I have checked .gitconfig
at it is the same as in another PC where the clone is working.
Any suggestions on what else I could try? The other similar posts didn't help so far.
NOTE: Solutions like git lfs clone...
are not valid as 1 - it does not properly track changes in the files manages by lfs, 2 - other programs (like cross-compiling toolchains) clone the repos using git clone
and that should not be changed.
Update: The specific file is a .dae
file, 15.55MB. While cloning other .dae
files are downloaded without any issue (smaller files though, up to 3.5MB).
Thanks!