1

I'm trying to push a build in Github and I keep on getting "Aborting" status and i have tried multiple times and I experience the same error.Not sure,how to solve this issue ? Any help or advice on this would be really great.

Commit successful
Username for 'https://github.com': ########
Password for 'https://######@github.com': 
error: pack-objects died of signal 9
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
fatal: write error: Bad file descriptor
Error in Pushing..!!  Aborting. 
Arun
  • 1,160
  • 3
  • 17
  • 33

1 Answers1

0

Check if you having any large file in your repo.
For instance, a config like this one can help:

git config --global pack.windowMemory "32m"

It represents the maximum size of memory that is consumed by each thread in git-pack-objects for pack window memory.

You also have (as I mentioned before):

git config http.postBuffer 52428800

You can also use a tool like BFG Repo-Cleaner to get rid of any too large file.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250