git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Preemptive EOF when pushing (using Msys git and PuTTY)
@ 2009-03-17 12:25 Gustaf Hendeby
  0 siblings, 0 replies; 3+ messages in thread
From: Gustaf Hendeby @ 2009-03-17 12:25 UTC (permalink / raw
  To: Git Mailing List

Hello everyone, and thanks for all your dedicated work with git.

I have used git for quite some time now, mainly on different Linux
platforms, without any problems.  Recently we convert the office's pet
project from svn to git.  Many people at the office use Windows (Msys
git 1.6.2 and plink), and I have stared to see (only from Windows
people) problems when pushing similar to the following:

Counting objects: 422, done.
Compressing objects: 422, done.
Writing objects: 100% (379/379), 77.77 KiB, done.
Total 379 (delta 310), reused 371 (delta 303)
fatal: early EOF
error: unpack failed: index-pack abnormal exit
To jkoehler@serv-4100:/git/argos.git
 ![remote rejected] jk/ellipseFit -> jk/ellipseFit (n/a (unpacker error))
error: failed to push some refs to
'jkoehler@serv-4100:/git/argos.git'

There seems to be no problem with the repo, neither local nor remote,
but for a specific setup the problem is reproducible on several Windows
machines, but if I move the whole local repo to a Linux machine instead
the problem is gone.

I suspect the problem is that a ^Z EOF gets embedded in the pack to be
transported, and that somehow interacts poorly with PuTTY, but that is
just my guessing.  And if so I don't know how to handle it.

Has anyone experienced anything similar?  If so, is there any simple fix
to the problem?  How would I go about to try to debug this?
Unfortunately, this seems to happen on a regular basis and affects the
git experience in a negative way, so I would be really happy to be able
to resolve the problem.

I'm thankful for any help that I can get.

/Gustaf

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

* Re: Preemptive EOF when pushing (using Msys git and PuTTY)
@ 2009-05-13  8:30 Luben Manolov
  2009-05-13 11:45 ` Gustaf Hendeby
  0 siblings, 1 reply; 3+ messages in thread
From: Luben Manolov @ 2009-05-13  8:30 UTC (permalink / raw
  To: hendeby; +Cc: git

Hi Gustaf,

I had exactly the same problem, which you have described below. We are 
using MsysGit 1.6.3 and plink on Windows. The solution in our case was 
to start using OpenSSH (the version from msysgit) instead of PuTTY/plink.

Best regards,

Luben

> Hello everyone, and thanks for all your dedicated work with git.
> 
> I have used git for quite some time now, mainly on different Linux
> platforms, without any problems.  Recently we convert the office's pet
> project from svn to git.  Many people at the office use Windows (Msys
> git 1.6.2 and plink), and I have stared to see (only from Windows
> people) problems when pushing similar to the following:
> 
> Counting objects: 422, done.
> Compressing objects: 422, done.
> Writing objects: 100% (379/379), 77.77 KiB, done.
> Total 379 (delta 310), reused 371 (delta 303)
> fatal: early EOF
> error: unpack failed: index-pack abnormal exit
> To jkoehler <at> serv-4100:/git/argos.git
>  ![remote rejected] jk/ellipseFit -> jk/ellipseFit (n/a (unpacker error))
> error: failed to push some refs to
> 'jkoehler <at> serv-4100:/git/argos.git'
> 
> There seems to be no problem with the repo, neither local nor remote,
> but for a specific setup the problem is reproducible on several Windows
> machines, but if I move the whole local repo to a Linux machine instead
> the problem is gone.
> 
> I suspect the problem is that a ^Z EOF gets embedded in the pack to be
> transported, and that somehow interacts poorly with PuTTY, but that is
> just my guessing.  And if so I don't know how to handle it.
> 
> Has anyone experienced anything similar?  If so, is there any simple fix
> to the problem?  How would I go about to try to debug this?
> Unfortunately, this seems to happen on a regular basis and affects the
> git experience in a negative way, so I would be really happy to be able
> to resolve the problem.
> 
> I'm thankful for any help that I can get.

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

* Re: Preemptive EOF when pushing (using Msys git and PuTTY)
  2009-05-13  8:30 Luben Manolov
@ 2009-05-13 11:45 ` Gustaf Hendeby
  0 siblings, 0 replies; 3+ messages in thread
From: Gustaf Hendeby @ 2009-05-13 11:45 UTC (permalink / raw
  To: Luben Manolov; +Cc: git

Luben Manolov wrote:
> Hi Gustaf,
> 
> I had exactly the same problem, which you have described below. We are 
> using MsysGit 1.6.3 and plink on Windows. The solution in our case was 
> to start using OpenSSH (the version from msysgit) instead of PuTTY/plink.

Thanks Luben!  I will test that solution the next time the problem 
arises.  Hopefully it solves the problem for people.

/Gustaf

> 
> Best regards,
> 
> Luben
> 
>> Hello everyone, and thanks for all your dedicated work with git.
>>
>> I have used git for quite some time now, mainly on different Linux
>> platforms, without any problems.  Recently we convert the office's pet
>> project from svn to git.  Many people at the office use Windows (Msys
>> git 1.6.2 and plink), and I have stared to see (only from Windows
>> people) problems when pushing similar to the following:
>>
>> Counting objects: 422, done.
>> Compressing objects: 422, done.
>> Writing objects: 100% (379/379), 77.77 KiB, done.
>> Total 379 (delta 310), reused 371 (delta 303)
>> fatal: early EOF
>> error: unpack failed: index-pack abnormal exit
>> To jkoehler <at> serv-4100:/git/argos.git
>>  ![remote rejected] jk/ellipseFit -> jk/ellipseFit (n/a (unpacker error))
>> error: failed to push some refs to
>> 'jkoehler <at> serv-4100:/git/argos.git'
>>
>> There seems to be no problem with the repo, neither local nor remote,
>> but for a specific setup the problem is reproducible on several Windows
>> machines, but if I move the whole local repo to a Linux machine instead
>> the problem is gone.
>>
>> I suspect the problem is that a ^Z EOF gets embedded in the pack to be
>> transported, and that somehow interacts poorly with PuTTY, but that is
>> just my guessing.  And if so I don't know how to handle it.
>>
>> Has anyone experienced anything similar?  If so, is there any simple fix
>> to the problem?  How would I go about to try to debug this?
>> Unfortunately, this seems to happen on a regular basis and affects the
>> git experience in a negative way, so I would be really happy to be able
>> to resolve the problem.
>>
>> I'm thankful for any help that I can get.
> 

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

end of thread, other threads:[~2009-05-13 12:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-17 12:25 Preemptive EOF when pushing (using Msys git and PuTTY) Gustaf Hendeby
  -- strict thread matches above, loose matches on Subject: below --
2009-05-13  8:30 Luben Manolov
2009-05-13 11:45 ` Gustaf Hendeby

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).