Hi I have an issue with GitHub when pushing. It started happening two days ago or so and I can't figure it out.
When pushing from terminal I get:
Counting objects: 358, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (322/322), done.
error: RPC failed; result=56, HTTP code = 200 15.52 MiB/s   
fatal: The remote end hung up unexpectedly
Writing objects: 100% (358/358), 157.16 MiB | 16.00 KiB/s, done.
Total 358 (delta 230), reused 3 (delta 3)
fatal: The remote end hung up unexpectedly
Everything up-to-date
Before throwing the fatal error it hangs for good three minutes. It says everything is up to date but evidently the changes aren't saved to github. I've pushed the same repository to bitbucket without any problems. I suspect it's some sort of timeout.
This is how my .git/config looks like.
[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
    ignorecase = false
    precomposeunicode = true
[branch "master"]
[remote "origin"]
        url = https://github.com/****/****.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[remote "bitbucket"]
        url = https://***@bitbucket.org/****/***.git
        fetch = +refs/heads/*:refs/remotes/bitbucket/*
I've also tried to sync with the github app and it takes pretty long until it throws a "Network Error. Check your Internet connection and try again."
Thanks in advance.
 
     
    