git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* msysgit clone/pull/fetch broken
@ 2010-12-01 13:31 ZoltánFüzesi
  2010-12-01 13:37 ` Erik Faye-Lund
  0 siblings, 1 reply; 5+ messages in thread
From: ZoltánFüzesi @ 2010-12-01 13:31 UTC (permalink / raw)
  To: git

Hi, I can't clone/pull/fetch from any of my repositories with the latest stable 
version (1.7.3.2.430.g208247) on Windows.

$ git clone --recursive git://server/user/project.git
Cloning into project...
fatal: failed to read object <sha1>: No error

After reverting commit 3ba7a065527a27f45659398e882feaa1165cbb4c ("A loose object 
is not corrupt if it cannot be read due to EMFILE") it works.

On Linux everything is fine.

BR,
Zé

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: msysgit clone/pull/fetch broken
  2010-12-01 13:31 msysgit clone/pull/fetch broken ZoltánFüzesi
@ 2010-12-01 13:37 ` Erik Faye-Lund
  2010-12-02  7:28   ` ZoltánFüzesi
  0 siblings, 1 reply; 5+ messages in thread
From: Erik Faye-Lund @ 2010-12-01 13:37 UTC (permalink / raw)
  To: ZoltánFüzesi; +Cc: git

On Wed, Dec 1, 2010 at 2:31 PM, ZoltánFüzesi <zfuzesi@eaglet.hu> wrote:
> Hi, I can't clone/pull/fetch from any of my repositories with the latest stable
> version (1.7.3.2.430.g208247) on Windows.
>
> $ git clone --recursive git://server/user/project.git
> Cloning into project...
> fatal: failed to read object <sha1>: No error
>
> After reverting commit 3ba7a065527a27f45659398e882feaa1165cbb4c ("A loose object
> is not corrupt if it cannot be read due to EMFILE") it works.
>
> On Linux everything is fine.

I've already submitted a patch-series that address this issue:
<1290533444-3404-1-git-send-email-kusmabite@gmail.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: msysgit clone/pull/fetch broken
  2010-12-01 13:37 ` Erik Faye-Lund
@ 2010-12-02  7:28   ` ZoltánFüzesi
  2010-12-02 12:43     ` Erik Faye-Lund
  0 siblings, 1 reply; 5+ messages in thread
From: ZoltánFüzesi @ 2010-12-02  7:28 UTC (permalink / raw)
  To: git

Erik Faye-Lund <kusmabite <at> gmail.com> writes:

> 
> On Wed, Dec 1, 2010 at 2:31 PM, ZoltánFüzesi <zfuzesi <at> eaglet.hu> wrote:
> > Hi, I can't clone/pull/fetch from any of my repositories with the latest 
stable
> > version (1.7.3.2.430.g208247) on Windows.
> >
> > $ git clone --recursive git://server/user/project.git
> > Cloning into project...
> > fatal: failed to read object <sha1>: No error
> >
> > After reverting commit 3ba7a065527a27f45659398e882feaa1165cbb4c ("A loose 
object
> > is not corrupt if it cannot be read due to EMFILE") it works.
> >
> > On Linux everything is fine.
> 
> I've already submitted a patch-series that address this issue:
> <1290533444-3404-1-git-send-email-kusmabite <at> gmail.com>
> 

Thanks! Could you give me the sha1(s) of those patches? I've found some of your 
recent patches, but they have already been merged into master.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: msysgit clone/pull/fetch broken
  2010-12-02  7:28   ` ZoltánFüzesi
@ 2010-12-02 12:43     ` Erik Faye-Lund
  2010-12-02 17:48       ` ZoltánFüzesi
  0 siblings, 1 reply; 5+ messages in thread
From: Erik Faye-Lund @ 2010-12-02 12:43 UTC (permalink / raw)
  To: ZoltánFüzesi; +Cc: git

On Thu, Dec 2, 2010 at 8:28 AM, ZoltánFüzesi <zfuzesi@eaglet.hu> wrote:
> Erik Faye-Lund <kusmabite <at> gmail.com> writes:
>
>>
>> On Wed, Dec 1, 2010 at 2:31 PM, ZoltánFüzesi <zfuzesi <at> eaglet.hu> wrote:
>> > Hi, I can't clone/pull/fetch from any of my repositories with the latest
> stable
>> > version (1.7.3.2.430.g208247) on Windows.
>> >
>> > $ git clone --recursive git://server/user/project.git
>> > Cloning into project...
>> > fatal: failed to read object <sha1>: No error
>> >
>> > After reverting commit 3ba7a065527a27f45659398e882feaa1165cbb4c ("A loose
> object
>> > is not corrupt if it cannot be read due to EMFILE") it works.
>> >
>> > On Linux everything is fine.
>>
>> I've already submitted a patch-series that address this issue:
>> <1290533444-3404-1-git-send-email-kusmabite <at> gmail.com>
>>
>
> Thanks! Could you give me the sha1(s) of those patches? I've found some of your
> recent patches, but they have already been merged into master.
>

I don't think the patches has been merged yet, so I don't really have
a SHA-1 for the series. But you could pull the topic from
git://repo.or.cz/git/kusma.git work/win32-dirent

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: msysgit clone/pull/fetch broken
  2010-12-02 12:43     ` Erik Faye-Lund
@ 2010-12-02 17:48       ` ZoltánFüzesi
  0 siblings, 0 replies; 5+ messages in thread
From: ZoltánFüzesi @ 2010-12-02 17:48 UTC (permalink / raw)
  To: git

Erik Faye-Lund <kusmabite <at> gmail.com> writes:
> 
> I don't think the patches has been merged yet, so I don't really have
> a SHA-1 for the series. But you could pull the topic from
> git://repo.or.cz/git/kusma.git work/win32-dirent
> 

OK. Thanks again!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-12-02 17:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-01 13:31 msysgit clone/pull/fetch broken ZoltánFüzesi
2010-12-01 13:37 ` Erik Faye-Lund
2010-12-02  7:28   ` ZoltánFüzesi
2010-12-02 12:43     ` Erik Faye-Lund
2010-12-02 17:48       ` ZoltánFüzesi

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).