Using Visual Studio Code to Check in a Folder to DevOps
https://stackoverflow.com/questions/67616266/how-to-connect-visual-studio-code-with-azure-git-repo
Issue
When pushing to..., I got the following error:
git push EUM-Config main
error: RPC failed; curl 56 HTTP/2 stream 7 was reset
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date
Solution:
git config --global http.version HTTP/1.1
https://stackoverflow.com/questions/66366582/github-unexpected-disconnect-while-reading-sideband-packet
Comments
Post a Comment