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

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!

Related

Heroku Git error, please try again shortly

I get this error when deploying my Heroku application from the CLI. It always worked fine, even today a moment ago. Now I'm getting this:
$ git push heroku main
Enumerating objects: 46, done.
Counting objects: 100% (46/46), done.
Delta compression using up to 8 threads
Compressing objects: 100% (31/31), done.
Writing objects: 100% (31/31), 4.62 KiB | 788.00 KiB/s, done.
Total 31 (delta 23), reused 0 (delta 0), pack-reused 0
remote: Compressing source files... done.
remote: Building source:
remote:
remote: ! Heroku Git error, please try again shortly.
remote: ! See http://status.heroku.com for current Heroku platform status.
remote: ! If the problem persists, please open a ticket
remote: ! on https://help.heroku.com/tickets/new
remote: ! and provide the Request ID dee02a42-c0d2-4740-b9f3-cbfb58c7d95f
remote:
To https://git.heroku.com/vaquita-escolar.git
! [remote rejected] main -> main (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/vaquita-escolar.git'
Advice is appreciated.
It was a temporary Heroku issue. It works now (today).

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.

GitBash error: unexpected disconnect while reading sideband packet

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

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

fatal: cannot create directory at ' ': No such file or directory

I clone project from server centOS to window , here is the error I got:
git clone ssh://git#xx.xxx.xx.xx:/home/git/srv/repos/projet.t2.company.com.git PROJ_V2
Cloning into 'PROJ_V2'...
git#xx.xxx.xx.xx's password:
remote: Counting objects: 7078, done.
remote: Compressing objects: 100% (5672/5672), done.
remote: Total 7078 (delta 1276), reused 6862 (delta 1073)
Receiving objects: 100% (7078/7078), 107.96 MiB | 18.00 KiB/s, done.
Resolving deltas: 100% (1276/1276), done.
Checking connectivity... done.
fatal: cannot create directory at ' ': No such file or directory
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'
Anyone know how to solve this ?

Resources