C
C#12mo ago
Angius

❔ Azure DevOps repo remote unpack failed

I have a Git repo set up, it's an UE5 project which means large binaries, and Azure repos have unlimited size, so that's why not Github. I'm trying to push the project over SSH, but I'm getting some weird errors
❯ git push -u origin --all
Enter passphrase for key [key]:
Enumerating objects: 2462, done.
Counting objects: 100% (2462/2462), done.
Delta compression using up to 12 threads
Compressing objects: 100% (2433/2433), done.
remote: The archive entry was compressed using an unsupported compression method.
send-pack: unexpected disconnect while reading sideband packet
fatal: sha1 file '<stdout>' write error: Broken pipe
error: remote unpack failed: error The archive entry was compressed using an unsupported compression method.
fatal: the remote end hung up unexpectedly
❯ git push -u origin --all
Enter passphrase for key [key]:
Enumerating objects: 2462, done.
Counting objects: 100% (2462/2462), done.
Delta compression using up to 12 threads
Compressing objects: 100% (2433/2433), done.
remote: The archive entry was compressed using an unsupported compression method.
send-pack: unexpected disconnect while reading sideband packet
fatal: sha1 file '<stdout>' write error: Broken pipe
error: remote unpack failed: error The archive entry was compressed using an unsupported compression method.
fatal: the remote end hung up unexpectedly
11 Replies
canton7
canton712mo ago
Stack Overflow
Unsupported compression, Azure git push over SSH?
I am trying to push a new branch to azure repo which fails. Get an error that the compression method isn't supported. Tried googling for the error but my search didn't display anything that looked ...
Angius
Angius12mo ago
I don't think there's anything to gc or prune, since it's literally the very first commit Worth a shot ig No cigar
Mistlands 5.2 on  master took 3m13s
❯ git gc
Enumerating objects: 2462, done.
Counting objects: 100% (2462/2462), done.
Delta compression using up to 12 threads
Compressing objects: 100% (2433/2433), done.
Writing objects: 100% (2462/2462), done.
Total 2462 (delta 912), reused 0 (delta 0), pack-reused 0
Removing duplicate objects: 100% (256/256), done.

Mistlands 5.2 on  master took 3m4s
❯ git remote prune origin
Enter passphrase for key [key]:

Mistlands 5.2 on  master
❯ git push --all
Enter passphrase for key [key]:
Enumerating objects: 2462, done.
Counting objects: 100% (2462/2462), done.
Delta compression using up to 12 threads
Compressing objects: 100% (1521/1521), done.
remote: The archive entry was compressed using an unsupported compression method.
send-pack: unexpected disconnect while reading sideband packet
fatal: sha1 file '<stdout>' write error: Broken pipe
error: remote unpack failed: error The archive entry was compressed using an unsupported compression method.
fatal: the remote end hung up unexpectedly
Mistlands 5.2 on  master took 3m13s
❯ git gc
Enumerating objects: 2462, done.
Counting objects: 100% (2462/2462), done.
Delta compression using up to 12 threads
Compressing objects: 100% (2433/2433), done.
Writing objects: 100% (2462/2462), done.
Total 2462 (delta 912), reused 0 (delta 0), pack-reused 0
Removing duplicate objects: 100% (256/256), done.

Mistlands 5.2 on  master took 3m4s
❯ git remote prune origin
Enter passphrase for key [key]:

Mistlands 5.2 on  master
❯ git push --all
Enter passphrase for key [key]:
Enumerating objects: 2462, done.
Counting objects: 100% (2462/2462), done.
Delta compression using up to 12 threads
Compressing objects: 100% (1521/1521), done.
remote: The archive entry was compressed using an unsupported compression method.
send-pack: unexpected disconnect while reading sideband packet
fatal: sha1 file '<stdout>' write error: Broken pipe
error: remote unpack failed: error The archive entry was compressed using an unsupported compression method.
fatal: the remote end hung up unexpectedly
It's not a timeout either, since it fails after 59 seconds
canton7
canton712mo ago
Boo. From the stuff I've read it does seem to be an issue with azure, and intermittent I.e. repacking fixes it sometimes Maybe git commit --amend to change the commit slightly? That might affect the pack enough that azure is happy with it /shrug
Angius
Angius12mo ago
If not, I'll try pushing over HTTPS maybe At least the initial large push
canton7
canton712mo ago
Yeah, that seemed to help looking at those links
Angius
Angius12mo ago
Amending didn't help HTTPS time Oh
Mistlands 5.2 on  master
❯ git push -u origin master
fatal: Authentication failed
Mistlands 5.2 on  master
❯ git push -u origin master
fatal: Authentication failed
Angius
Angius12mo ago
HTTPS worked Nice
Unknown User
Unknown User12mo ago
Message Not Public
Sign In & Join Server To View
Accord
Accord12mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.