Azure DevOps GIT with SSH: fetch-pack: unexpected disconnect while reading sideband packet
In the organization I currently am, on a specific projet, the GIT repository is pretty beefy and large. I had not updated the development branch in a while, due to my assignation on some other projects. Once I had some time to come back to work on this project and see where the team was in terms of code, I wanted to make sure my local development branch was up to date with the remote by pulling the code using the the git pull command. After issuing the command, I got the following error:
1 2 3 |
fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output |
This seems to be related to the decompression of the code once it’s received from the remote. One solution to counter this problem, is to…
Read more