* git-svn dying unceremoniously
@ 2011-04-11 22:00 Dave Abrahams
2011-04-12 2:12 ` Jonathan Nieder
0 siblings, 1 reply; 6+ messages in thread
From: Dave Abrahams @ 2011-04-11 22:00 UTC (permalink / raw)
To: git
Does anyone know a cure for this?
% git svn fetch
A boost/boost/graph/uniform_cost_search.hpp
A boost/boost/graph/properties.hpp
A boost/boost/graph/smallest_last_vertex_ordering.hpp
A boost/boost/graph/johnson_all_pairs_shortest_paths.hpp
.
.
.
A boost/libs/graph/docs/MutableGraph.html
r7701 = c2434d3062416adac72b370ce3b993a9857e2029 (refs/remotes/trunk)
error: git-svn died of signal 13
Thanks,
Dave
--
Dave Abrahams
BoostPro Computing
http://www.boostpro.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: git-svn dying unceremoniously
2011-04-11 22:00 git-svn dying unceremoniously Dave Abrahams
@ 2011-04-12 2:12 ` Jonathan Nieder
2011-04-12 6:50 ` Andres Freund
0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Nieder @ 2011-04-12 2:12 UTC (permalink / raw)
To: Dave Abrahams; +Cc: git
Hi Dave,
Dave Abrahams wrote:
> Does anyone know a cure for this?
>
> % git svn fetch
> A boost/boost/graph/uniform_cost_search.hpp
> A boost/boost/graph/properties.hpp
> A boost/boost/graph/smallest_last_vertex_ordering.hpp
> A boost/boost/graph/johnson_all_pairs_shortest_paths.hpp
> .
> .
> .
> A boost/libs/graph/docs/MutableGraph.html
> r7701 = c2434d3062416adac72b370ce3b993a9857e2029 (refs/remotes/trunk)
> error: git-svn died of signal 13
Very old bug, not well understood. No cure, only workarounds.
See http://thread.gmane.org/gmane.comp.version-control.git/134936/focus=134940
and the surrounding thread for hints.
Hope that helps,
Jonathan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: git-svn dying unceremoniously
2011-04-12 2:12 ` Jonathan Nieder
@ 2011-04-12 6:50 ` Andres Freund
2011-04-12 16:02 ` Dave Abrahams
0 siblings, 1 reply; 6+ messages in thread
From: Andres Freund @ 2011-04-12 6:50 UTC (permalink / raw)
To: Jonathan Nieder; +Cc: Dave Abrahams, git
Hi,
On Tuesday 12 April 2011 04:12:24 Jonathan Nieder wrote:
> See
> http://thread.gmane.org/gmane.comp.version-control.git/134936/focus=134940
> and the surrounding thread for hints.
I hit that again some days ago and after stracing I started dumping the
network transfer. For me it looks like the server simply closes the
connection. Seemingly always directly after a tls key renegotiation... I
didn't dig further so far.
Andres
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: git-svn dying unceremoniously
2011-04-12 6:50 ` Andres Freund
@ 2011-04-12 16:02 ` Dave Abrahams
2011-04-13 12:46 ` Thomas Ferris Nicolaisen
0 siblings, 1 reply; 6+ messages in thread
From: Dave Abrahams @ 2011-04-12 16:02 UTC (permalink / raw)
To: Andres Freund; +Cc: Jonathan Nieder, git
On Tue, Apr 12, 2011 at 2:50 AM, Andres Freund <andres@anarazel.de> wrote:
> Hi,
>
> On Tuesday 12 April 2011 04:12:24 Jonathan Nieder wrote:
>> See
>> http://thread.gmane.org/gmane.comp.version-control.git/134936/focus=134940
>> and the surrounding thread for hints.
> I hit that again some days ago and after stracing I started dumping the
> network transfer. For me it looks like the server simply closes the
> connection. Seemingly always directly after a tls key renegotiation... I
> didn't dig further so far.
I managed to get a lot farther with
while ! git svn fetch ; do sleep 1 ; done
But eventually I exceeded my disk quota:
error: bad index file sha1 signature
fatal: index file corrupt
write-tree: command returned error: 128
:(
--
Dave Abrahams
BoostPro Computing
http://www.boostpro.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: git-svn dying unceremoniously
2011-04-12 16:02 ` Dave Abrahams
@ 2011-04-13 12:46 ` Thomas Ferris Nicolaisen
2011-04-13 14:27 ` Dave Abrahams
0 siblings, 1 reply; 6+ messages in thread
From: Thomas Ferris Nicolaisen @ 2011-04-13 12:46 UTC (permalink / raw)
To: Dave Abrahams; +Cc: Andres Freund, Jonathan Nieder, git
On Tue, Apr 12, 2011 at 6:02 PM, Dave Abrahams <dave@boostpro.com> wrote:
> I managed to get a lot farther with
>
> while ! git svn fetch ; do sleep 1 ; done
>
> But eventually I exceeded my disk quota:
>
> error: bad index file sha1 signature
> fatal: index file corrupt
> write-tree: command returned error: 128
>
I've run into this in my git-svn clones as well. It happened once last
year. I tried this trick I found googling around:
rm -f .git/index
git read-tree --reset HEAD
git status
.. but it didn't help. I ended up re-doing the git svn clone. Since
then it has worked fine.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: git-svn dying unceremoniously
2011-04-13 12:46 ` Thomas Ferris Nicolaisen
@ 2011-04-13 14:27 ` Dave Abrahams
0 siblings, 0 replies; 6+ messages in thread
From: Dave Abrahams @ 2011-04-13 14:27 UTC (permalink / raw)
To: Thomas Ferris Nicolaisen; +Cc: Andres Freund, Jonathan Nieder, git
On Wed, Apr 13, 2011 at 8:46 AM, Thomas Ferris Nicolaisen
<tfnico@gmail.com> wrote:
> On Tue, Apr 12, 2011 at 6:02 PM, Dave Abrahams <dave@boostpro.com> wrote:
>> I managed to get a lot farther with
>>
>> while ! git svn fetch ; do sleep 1 ; done
>>
>> But eventually I exceeded my disk quota:
>>
>> error: bad index file sha1 signature
>> fatal: index file corrupt
>> write-tree: command returned error: 128
>>
>
> I've run into this in my git-svn clones as well. It happened once last
> year. I tried this trick I found googling around:
>
> rm -f .git/index
> git read-tree --reset HEAD
> git status
>
> .. but it didn't help. I ended up re-doing the git svn clone. Since
> then it has worked fine.
Yeah, I'm redoing mine as well. It'll probably "only" take another 24
hours to finish, but at least it doesn't seem to be getting stuck!
Thanks, all
--
Dave Abrahams
BoostPro Computing
http://www.boostpro.com
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-04-13 14:28 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-11 22:00 git-svn dying unceremoniously Dave Abrahams
2011-04-12 2:12 ` Jonathan Nieder
2011-04-12 6:50 ` Andres Freund
2011-04-12 16:02 ` Dave Abrahams
2011-04-13 12:46 ` Thomas Ferris Nicolaisen
2011-04-13 14:27 ` Dave Abrahams
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).