This issue is being tracked by: BARNA-400 - Getting issue details... STATUS
$ git clone http://sammeth.net/bitbucket/scm/barna/barna.git Cloning into 'barna'... warning: redirecting to http://bitbucket.sammeth.net/scm/barna/barna.git/ remote: Enumerating objects: 31794, done. remote: Counting objects: 100% (31794/31794), done. remote: Compressing objects: 100% (13529/13529), done. fatal: The remote end hung up unexpectedly50 MiB | 72.00 KiB/s fatal: early EOF fatal: index-pack failed
1. Turn off compression:
$ git config --global core.compression 0
2. do a partial clone to truncate the amount of info coming down:
$ git clone --depth 1 http://sammeth.net/bitbucket/scm/barna/barna.git
3. When that works, go into the new directory barna and retrieve the rest of the clone:
$ cd barna $ git fetch --unshallow
4. Pull:
$ git pull --all
1 Comment
Vitor Lima Coelho
Finally: