mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* git fetch issue
@ 2015-03-12  8:05 Antony Pavlov
  2015-03-12  8:09 ` Marc Kleine-Budde
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Antony Pavlov @ 2015-03-12  8:05 UTC (permalink / raw)
  To: barebox

Hi All!

I have a problem with git-fetch. Here is the log:

antony@puro:~/barebox$ git remote show pengutronix | grep "Fetch URL"
  Fetch URL: git://git.pengutronix.de/git/barebox.git

antony@puro:~/barebox$ git fetch pengutronix
remote: Counting objects: 1101, done.
remote: Compressing objects: 100% (199/199), done.
remote: Total 771 (delta 628), reused 672 (delta 555)
Receiving objects: 100% (771/771), 131.67 KiB | 0 bytes/s, done.
error: index-pack died of signal 7
fatal: index-pack failed

antony@puro:~/barebox$ git --version
git version 2.1.4


Any comments?

-- 
Best regards,
  Antony Pavlov

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: git fetch issue
  2015-03-12  8:05 git fetch issue Antony Pavlov
@ 2015-03-12  8:09 ` Marc Kleine-Budde
  2015-03-12  9:32   ` Antony Pavlov
  2015-03-12  8:11 ` Sascha Hauer
  2015-03-12  8:11 ` Jean-Christophe PLAGNIOL-VILLARD
  2 siblings, 1 reply; 6+ messages in thread
From: Marc Kleine-Budde @ 2015-03-12  8:09 UTC (permalink / raw)
  To: Antony Pavlov, barebox


[-- Attachment #1.1: Type: text/plain, Size: 1158 bytes --]

On 03/12/2015 09:05 AM, Antony Pavlov wrote:
> Hi All!
> 
> I have a problem with git-fetch. Here is the log:
> 
> antony@puro:~/barebox$ git remote show pengutronix | grep "Fetch URL"
>   Fetch URL: git://git.pengutronix.de/git/barebox.git
> 
> antony@puro:~/barebox$ git fetch pengutronix
> remote: Counting objects: 1101, done.
> remote: Compressing objects: 100% (199/199), done.
> remote: Total 771 (delta 628), reused 672 (delta 555)
> Receiving objects: 100% (771/771), 131.67 KiB | 0 bytes/s, done.
> error: index-pack died of signal 7
> fatal: index-pack failed

Signal 7 is a Bus Error, maybe your local git repo is damaged or you
having a hardware problem. Make a copy of your git repo (using "cp" or
"tar") and try running "git fsck" on it.

I've just cloned from git://git.pengutronix.de/git/barebox.git using
git-2.1.4 without problems.

Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 149 bytes --]

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: git fetch issue
  2015-03-12  8:05 git fetch issue Antony Pavlov
  2015-03-12  8:09 ` Marc Kleine-Budde
@ 2015-03-12  8:11 ` Sascha Hauer
  2015-03-12  8:11 ` Jean-Christophe PLAGNIOL-VILLARD
  2 siblings, 0 replies; 6+ messages in thread
From: Sascha Hauer @ 2015-03-12  8:11 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

Hi Antony,

On Thu, Mar 12, 2015 at 12:05:41PM +0400, Antony Pavlov wrote:
> Hi All!
> 
> I have a problem with git-fetch. Here is the log:
> 
> antony@puro:~/barebox$ git remote show pengutronix | grep "Fetch URL"
>   Fetch URL: git://git.pengutronix.de/git/barebox.git
> 
> antony@puro:~/barebox$ git fetch pengutronix
> remote: Counting objects: 1101, done.
> remote: Compressing objects: 100% (199/199), done.
> remote: Total 771 (delta 628), reused 672 (delta 555)
> Receiving objects: 100% (771/771), 131.67 KiB | 0 bytes/s, done.
> error: index-pack died of signal 7
> fatal: index-pack failed

Just tried at home, it works.

> 
> antony@puro:~/barebox$ git --version
> git version 2.1.4

I have git 2.1.0 though. Does this always happen when you try again?

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: git fetch issue
  2015-03-12  8:05 git fetch issue Antony Pavlov
  2015-03-12  8:09 ` Marc Kleine-Budde
  2015-03-12  8:11 ` Sascha Hauer
@ 2015-03-12  8:11 ` Jean-Christophe PLAGNIOL-VILLARD
  2 siblings, 0 replies; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2015-03-12  8:11 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

On 12:05 Thu 12 Mar     , Antony Pavlov wrote:
> Hi All!
> 
> I have a problem with git-fetch. Here is the log:
> 
> antony@puro:~/barebox$ git remote show pengutronix | grep "Fetch URL"
>   Fetch URL: git://git.pengutronix.de/git/barebox.git
> 
> antony@puro:~/barebox$ git fetch pengutronix
> remote: Counting objects: 1101, done.
> remote: Compressing objects: 100% (199/199), done.
> remote: Total 771 (delta 628), reused 672 (delta 555)
> Receiving objects: 100% (771/771), 131.67 KiB | 0 bytes/s, done.
> error: index-pack died of signal 7
> fatal: index-pack failed
> 
> antony@puro:~/barebox$ git --version
> git version 2.1.4
> 
> 
> Any comments?

no issue here

same version

Best Regards,
J.
> 
> -- 
> Best regards,
>   Antony Pavlov
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: git fetch issue
  2015-03-12  8:09 ` Marc Kleine-Budde
@ 2015-03-12  9:32   ` Antony Pavlov
  2015-03-13 19:22     ` Uwe Kleine-König
  0 siblings, 1 reply; 6+ messages in thread
From: Antony Pavlov @ 2015-03-12  9:32 UTC (permalink / raw)
  To: Marc Kleine-Budde, Sascha Hauer, Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Thu, 12 Mar 2015 09:09:38 +0100
Marc Kleine-Budde <mkl@pengutronix.de> wrote:

> On 03/12/2015 09:05 AM, Antony Pavlov wrote:
> > Hi All!
> > 
> > I have a problem with git-fetch. Here is the log:
> > 
> > antony@puro:~/barebox$ git remote show pengutronix | grep "Fetch URL"
> >   Fetch URL: git://git.pengutronix.de/git/barebox.git
> > 
> > antony@puro:~/barebox$ git fetch pengutronix
> > remote: Counting objects: 1101, done.
> > remote: Compressing objects: 100% (199/199), done.
> > remote: Total 771 (delta 628), reused 672 (delta 555)
> > Receiving objects: 100% (771/771), 131.67 KiB | 0 bytes/s, done.
> > error: index-pack died of signal 7
> > fatal: index-pack failed
> 
> Signal 7 is a Bus Error, maybe your local git repo is damaged or you
> having a hardware problem. Make a copy of your git repo (using "cp" or
> "tar") and try running "git fsck" on it.
> 
> I've just cloned from git://git.pengutronix.de/git/barebox.git using
> git-2.1.4 without problems.

It looks like my local repo is damaged ("git fsck" exits with a bus error message).
I suppose that the problem is likely due to my laptop yesterday emergency power off.
I have just re-cloned barebox.git from pengutronix. This new copy has no bus error problem.

I'm very sorry for a false alarm.

-- 
Best regards,
  Antony Pavlov

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: git fetch issue
  2015-03-12  9:32   ` Antony Pavlov
@ 2015-03-13 19:22     ` Uwe Kleine-König
  0 siblings, 0 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2015-03-13 19:22 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

Hello Antony,

On Thu, Mar 12, 2015 at 01:32:53PM +0400, Antony Pavlov wrote:
> It looks like my local repo is damaged ("git fsck" exits with a bus error message).
> I suppose that the problem is likely due to my laptop yesterday emergency power off.
> I have just re-cloned barebox.git from pengutronix. This new copy has no bus error problem.
If you can share your repository the git-people might be interested to
look into why git runs into a bus error.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2015-03-13 19:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-12  8:05 git fetch issue Antony Pavlov
2015-03-12  8:09 ` Marc Kleine-Budde
2015-03-12  9:32   ` Antony Pavlov
2015-03-13 19:22     ` Uwe Kleine-König
2015-03-12  8:11 ` Sascha Hauer
2015-03-12  8:11 ` Jean-Christophe PLAGNIOL-VILLARD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox