GitBash error: unexpected disconnect while reading sideband packet - bash

I'm trying to push a dataset of images and masks to the master branch of my GitHub repo and it keeps not working and giving me the below error messages. The size of the dataset is around 5GB. I just want to upload this dataset onto my GitHub repo and was told that bash was the best way to do it, does anyone know how to fix this error, or any other methods I could use to upload my dataset to GitHub?
Edit: Printed error message in text rather than as an image
Error message:
$ git push origin master
Enumerating objects: 1025, done.
Counting objects: 100% (1025/1025), done.
Delta compression using up to 8 threads
Compressing objects: 100% (1020/1020), done.
error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)
send-pack: unexpected disconnect while reading sideband packet
Writing objects: 100% (1020/1020), 3.02 GiB | 16.00 MiB/s, done.
fatal: the remote end hung up unexpectedly
Everything up-to-date

Related

Git pull failing HTTP 500 curl 22 The requested URL returned error: 500 Internal Server Error

We are sitting behind a proxy thus git is configured as follows
[http "https://github.com"]
proxy = http://:#webproxy.intra:8080
sslBackend = schannel
sslverify = true
[http "https://gitlab.com"]
proxy = http://:#webproxy.intra:8080
sslBackend = schannel
sslverify = true
Remotes are set as follows
origin https://gitlab.com/papanito/website.git (fetch)
origin https://gitlab.com/papanito/website.git (push)
While pulling mostly worked, since a while I get the following error while fetching or pulling
$ git fetch --all
Fetching origin
error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500
fatal: error reading section header 'acknowledgments'
error: Could not fetch origin
this is a different issue than Git push failing HTTP 500 curl 22 The requested URL returned error: 500 Internal Server Error
This issue is probably related to the proxy (blocking?). Will further check but maybe somebody of you has some hints.
I could workaround the issue by limiting the depth.
git pull --depth 20
remote: Enumerating objects: 518, done.
remote: Counting objects: 100% (398/398), done.
remote: Compressing objects: 100% (184/184), done.
Rremote: Total 323 (delta 171), reused 237 (delta 110), pack-reused 0
Receiving objects: 100% (323/323), 4.84 MiB | 17.26 MiB/s, done.
Resolving deltas: 100% (171/171), completed with 36 local objects.
From https://gitlab.com/wyssmann/website
While this is not a proper solution, it might help some in meanwhile.

Error Pushing node app to heroku

I keep getting this error when i try pushing to heroku, i have no idea what it means.
error: unable to rewind rpc post data - try increasing http.postBuffer
error: fatal: WRPC failed; curl 56 SSL read: error:140943FC:SSL routines:ssl3_read_bytes:sslv3 alert bad record mac, errno 0
The remote end hung up unexpectedly
Writing objects: 100% (5327/5327), 44.34 MiB | 4.39 MiB/s, done.
Total 5327 (delta 1360), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date
You might try
git config http.postBuffer 524288000

error: RPC failed; result=22, HTTP code = 504.00 KiB/s

I have a problem with git push.
Its not working
Counting objects: 143, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (116/116), done.
error: RPC failed; result=22, HTTP code = 504.00 KiB/s
fatal: The remote end hung up unexpectedly| 11.00 KiB/s
Writing objects: 100% (120/120), 207.69 MiB | 7.03 MiB/s, done.
Total 120 (delta 32), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date
It's not working can someone help me in this it took so much time to to push and after that it give me this result.
It looks like your terminal just misprinted some characters. The actual error is:
error: RPC failed; result=22, HTTP code = 504
HTTP 504 means the server timed out. Searching for this should find you better help!

error: git-credential-osxkeychain died of signal 11 - can't understand answers

I am trying to push a text file to github and am getting the above error. I am using OSX 10.7.5 and git-1.8.4.2.
I have created a text file which I seem to be able to add and commit without problems. On my first attempt, I had the following error message:
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
error: `git-credential-osxkeychain died of signal 11`
Username for `'https://github.com'`: Anto58
Password for `'https://Anto58#github.com'`:
error: `git-credential-osxkeychain` died of signal 11
To `https://github.com/Anto58/datasciencecoursera.git`
! [rejected] master -> master (fetch first)
error: failed to push some refs to `'https://github.com/Anto58/datasciencecoursera.git'`
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
I spent some time researching this and found that this was a problem because my github repo had a readme file in it that was not on my local repo and I tried implementing both suggested solutions, cloning and pulling before pushing.
The cloning looked as though it was working:
Cloning into 'coursera-repo'...
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
Checking connectivity... done
But I still couldn't push. So then I deleted my directory and started again using pull, which gave virtually identical output:
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From `https://github.com/Anto58/datasciencecoursera`
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
But same problem with pushing:
error: `git-credential-osxkeychain` died of signal 11
Username for `'https://github.com'`: Anto58
Password for `'https://Anto58#github.com'`:
error: `git-credential-osxkeychain` died of signal 11
Everything up-to-date
While it said everything was up-to-date, the file did not appear in my github'repo`.
Then I found the link on the stackoverflow question which had the link to the site dealing with caching your github password, which I tried to follow.
I typed
git credential-osxkeychain
which gave me the same error as I started with
I then tried to download the osxkeychain helper using the curl command:
`curl -s -O \
? https://github-media-downloads.s3.amazonaws.com/osx/git-dredential-osxkeychain`
I didn't get an error message for this, so I'm assuming it worked?
The next step was changing the permissions:
chmod u+x git-credential-osxkeychain
which again didn't give an error message
But I fell over at the next step:
sudo mv git-credential-osxkeychain \
"$(dirname $(which git))/git-credential-osxkeychain"`
where I got an illegal variable name message. Is this because dirname should actually be /user/local/git/? And should "which git" also be replaced by something else? I started getting pretty nervous at the point when I got the message:
`WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.`
because I really had no idea what I was doing.
The TA on Coursera suggested just running
git config --global credential.helper osxkeychain
but now I get the error message twice instead of just once and still can't push.
I have also tried to find where my gitconfig file is since one of the suggestions is to delete your gitconfig file but only after checking it doesn't have anything else in it. It didn't show up on a normal search in finder so I assumed it is hidden and used defaults write com.apple.finder AppleShowAllFiles YES but without success. When I use alt Relaunch, Finder keeps opening with the Git package window that doesn't have a search option.
Sorry this is so long - Can anybody help me and explain what I need to do in very simple terms - assume I know nothing?
Also if you can explain why that would be incredibly helpful as I would like to understand how it works.
I am using the same Mac operating system and Git version as you and have been getting the same error messages when trying to push the HelloWorld.md file to my datasciencecoursera repo on Github. I finally got round this by deleting the repo on Github and making it again but without ticking the create README file, so its just a completely empty repository. I then deleted and recreated the directory I'd made on my local computer, remade the HelloWorld file and followed the course instructions again for initiating and linking the local/Github repositories and pushing the file to GitHub. The final command that worked for me was one the options suggested by GitHub when I set up the repo: git push -u origin master (after linking to the local repository). I still got the error messages, and got asked for my user name and password. I entered these (note that the password does not show up when you type it in...) and then got the error messages again but followed by detail:
error: git-credential-osxkeychain died of signal 11
error: git-credential-osxkeychain died of signal 11
Counting objects: 3, done.
Writing objects: 100% (3/3), 244 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/keh444/datasciencecoursera.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
When I looked on GitHub the HelloWorld file was in the repo, so it had worked.
While this may not have solved the problem in the long term at least I can now move on...

Issue with GIT hosted on IIS with Bonobo

We installed Bonobo Git Server on a webserver using IIS7.
Everything seems to work fine, we create repositories, we clone them, but when we try to push we have this error:
$ git push origin master
Username:
Password:
Counting objects: 3985, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3561/3561), done.
Writing objects: 100% (3984/3984), 24.67 MiB | 7.70 MiB/s, done.
Total 3984 (delta 645), reused 0 (delta 0)
fatal: protocol error: bad line length character: <!DO
fatal: The remote end hung up unexpectedly
fatal: write error: Invalid argument
It happens when we do a big commit, usually our initial commit.
If I commit juste something like readme.txt it works just fine.
Most of our repos are migrations from SVN, we are working with it for about 2 weeks now and everything went great until we started a new project and made a big initial commit.
I did not manage to find anything useful by googling the error.
I also modified my git.config to this:
[http]
postBuffer = 524288000
sslVerify = false
But it does not solve my issue.
Thanks a lot,
Charles
I found the problem...In fact it was in Bonobo Web.config file
I had to add the following line:
<httpRuntime maxRequestLength="2147483647" />
in the node
<system.web>

Resources