GitHub Desktop error: "The remote disconnected. Check your internet connection and try again." Bug? #138617
-
Select Topic AreaQuestion BodyHi! I wasn't able to push my commits. I was able to push some commits after updating my GitHub Desktop Version but not all. So was wondering if there is a bug? I checked the file sizes, permissions, authentication etc. and the issue was still not fixed. I've uploaded the log file if that helps! Any help would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi. It might be something to do with the pushing size. So from your log files Say you are trying to push to the main remote branch. To get commit hash run you will see a 7 digit random character infront of your latest commit ,the top most one ( ex hash : 6dhf84s ) Hope this helps. |
Beta Was this translation helpful? Give feedback.
Hi. It might be something to do with the pushing size.
Pushing from the command line should solve this.
So from your log files
error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500 send-pack: unexpected disconnect while reading sideband packet
This seems to be the issue. The File size that your are trying to push might be too big. I think you might have multiple commits you haven't pushed and you are pushing them all at once and github is rejecting it.
Say you are trying to push to the main remote branch.
Do it from the shell / use command line by specifying the latest commit hash into the git push command
To get commit hash run
git log --oneline
you will see a 7 digit…