Keep getting error message 'Remote has disconnected'
See original GitHub issueDescription
I upgraded the app to v.8, and every push to the remote end with a ‘remote has disconnected’ error
Version
GitHub Desktop version: [0.8.0]
OS version: [OSX 10.12.6]
Steps to Reproduce
Commit to local Click the push to origin
Expected behavior: [Push to finish loading to remote]
Actual behavior: [failure ]
Reproduces how often: [100%]
Logs
Additional Information
Issue Analytics
- State:
- Created 6 years ago
- Comments:24 (10 by maintainers)
Top Results From Across the Web
Troubleshoot Remote desktop disconnected errors
Error message 2. Remote desktop disconnected. Because of a security error, the client could not connect to the remote computer.
Read more >How to Resolve Remote Desktop Disconnected Error
Remote Desktop disconnected error may occur in multiple ways. Find the exact cause and resolve it with the appropriate steps for each case....
Read more >Fix: You have been disconnected because another ...
If you're getting You have been disconnected because another connection was made to the remote computer error on Windows 10, fix it here....
Read more >SOLVED Remote users keep getting "The connection has ...
Two of the five remote users keep getting disconnected from RDS with this error message many times per hour throughout the whole day:....
Read more >PSMRD001E User was disconnected from remote machine ...
PSMRD001E User was disconnected from remote machine. Reason: [An internal error has occurred.] (Code: <error_code>).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for clearing up Markus.
I “knew” this, but I wanted to ask because I considered this answer so unlikely.
I hate to state the obvious, but if you develop on media projects, 2Gb+ is standard, and binary files are a natural part of your IDE workflow.
With regards to Git not supporting 2GB, that leaves the following options for projects like this:
a) Git + another overlapping sync/cloud solution (high maintenance and messy - not happening) b) No versioning (nope - need that versioning) c) Another versioning software.
a) and b) are out of the question. Thus c) is the only viable option.
As a paying customer hoping to go full Git, I’m disappointed (and a bit shocked) that Git doesn’t support big projects out of the box, and I’m very annoyed that Git deals with the problem by just running for hours before crashing with an ambiguous message. This is pretty much the worst case scenario in terms of wasting users’ time, and also contributes to the confusion of thinking “I can get this to work… right?”.
It’s now almost two months since I wrote about this.
Gustav C. Tresselt TenkLabs AS +47 98447222
On Wed, Nov 1, 2017 at 1:29 PM, Markus Olsson notifications@github.com wrote:
I had the same problem and I think it is related to the files size of your repository. I fixed the problem by running this on console in your git’s folder:
git config http.postBuffer 524288000
I hope it can help you