So we have a git repo inside that it contains a submodule that has a bunch of binary files that are all LFS filtered (library files).
On windows using git 2.14.1.windows.1 I can do:
git clone <url>
git submodule update --init
And this inits and downloads all the submodule content no problem.
Then on Ubuntu 18 using get version 2.17.0 I can do the same commands:
git clone <url>
git submodule update --init
Only I get this error:
Error downloading object <filename>: smudge error: Error downloading <filename> (<HASH>): batch reponse: Post <url.git>/info/lfs/objects/batch: proxyconnect tcp: dial tcp: lookup <PCName> on <IP Address>: server misbehaving
I don't really understand what this means. But all my LFS files seem to have this same issue from the Ubuntu box (actually its a VM on my windows box). It can see all the same ip addresses that my windows box can see.
Using smartgit on the same Ubuntu VM I can sometimes get it to update the git submodules, but also sometimes it fails.
So really don't know how to proceed either debugging the issue or resolving it. My gut feeling is that it might be some timeout issue, but that is really a wild guess...