After pushing some large dlls into our repository I noticed the other users of that repository were getting the following error while Taking PULL:
"C:\Program Files (x86)\Git\bin\git.exe" pull --progress "origin" fatal: early EOF fatal: The remote end hung up unexpectedly fatal: unpack-objects failed error: RPC failed; result=18, HTTP code = 200 Done
Solution:
The solution was to run the followings command in GitBash:
git repack remote/origin/master
git config --global http.postBuffer 524288000
If you are in Visual Studio you can open the git bash via Git >> Git Bash command:
After running the above commands the issue was fixed.