ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] Q: Ошибки, найденные git fsck
@ 2009-12-07 13:57 Michael Pozhidaev
  2009-12-07 14:12 ` Afanasov Dmitry
  2009-12-07 14:17 ` Michael Shigorin
  0 siblings, 2 replies; 7+ messages in thread
From: Michael Pozhidaev @ 2009-12-07 13:57 UTC (permalink / raw)
  To: sisyphus

Привет всем!

Вот на одном гитовом репо git fsck пишет такое:

dangling blob 2635bf94eae515a20cd87fb27a4a9ce901917ded
dangling blob 3c19db0a36b61f6ee1678eeb764c11fa3547745b

О чём бы это могло говорить? Как-нибудь такое лечится?

-- 
Michael Pozhidaev. E-mail: msp@altlinux.ru.
Tomsk State University. http://www.csd.tsu.ru
ALT Linux Team. http://www.altlinux.org



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

* Re: [sisyphus] Q: Ошибки, найденные git fsck
  2009-12-07 13:57 [sisyphus] Q: Ошибки, найденные git fsck Michael Pozhidaev
@ 2009-12-07 14:12 ` Afanasov Dmitry
  2009-12-07 14:17 ` Michael Shigorin
  1 sibling, 0 replies; 7+ messages in thread
From: Afanasov Dmitry @ 2009-12-07 14:12 UTC (permalink / raw)
  To: sisyphus

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

On Mon, Dec 07, 2009 at 07:57:41PM +0600, Michael Pozhidaev wrote:
> Привет всем!
> 
> Вот на одном гитовом репо git fsck пишет такое:
> 
> dangling blob 2635bf94eae515a20cd87fb27a4a9ce901917ded
> dangling blob 3c19db0a36b61f6ee1678eeb764c11fa3547745b
> 
> О чём бы это могло говорить? Как-нибудь такое лечится?
оно говорит о git reset --hard/

это коммиты, куда не ведет дерево истории. убирается с помощью git gc,
хотя можно и оставить.
-- 
 С уважением
 Афанасов Дмитрий

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

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

* Re: [sisyphus] Q: Ошибки, найденные git fsck
  2009-12-07 13:57 [sisyphus] Q: Ошибки, найденные git fsck Michael Pozhidaev
  2009-12-07 14:12 ` Afanasov Dmitry
@ 2009-12-07 14:17 ` Michael Shigorin
  2009-12-07 14:29   ` Afanasov Dmitry
  1 sibling, 1 reply; 7+ messages in thread
From: Michael Shigorin @ 2009-12-07 14:17 UTC (permalink / raw)
  To: sisyphus

On Mon, Dec 07, 2009 at 07:57:41PM +0600, Michael Pozhidaev wrote:
> Вот на одном гитовом репо git fsck пишет такое:
> dangling blob 2635bf94eae515a20cd87fb27a4a9ce901917ded
> dangling blob 3c19db0a36b61f6ee1678eeb764c11fa3547745b
> О чём бы это могло говорить?

Ничего страшного:

---
There are also other situations that cause dangling objects. For
example, a "dangling blob" may arise because you did a "git add"
of a file, but then, before you actually committed it and made it
part of the bigger picture, you changed something else in that
file and committed that *updated* thing--the old state that you
added originally ends up not being pointed to by any commit or
tree, so it's now a dangling blob object.
--- http://kernel.org/pub/software/scm/git/docs/user-manual.html#dangling-objects

> Как-нибудь такое лечится?

git prune

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


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

* Re: [sisyphus] Q: Ошибки, найденные git fsck
  2009-12-07 14:17 ` Michael Shigorin
@ 2009-12-07 14:29   ` Afanasov Dmitry
  2009-12-07 14:35     ` Andrey Rahmatullin
  0 siblings, 1 reply; 7+ messages in thread
From: Afanasov Dmitry @ 2009-12-07 14:29 UTC (permalink / raw)
  To: sisyphus

[-- Attachment #1: Type: text/plain, Size: 550 bytes --]

On Mon, Dec 07, 2009 at 04:17:27PM +0200, Michael Shigorin wrote:
> On Mon, Dec 07, 2009 at 07:57:41PM +0600, Michael Pozhidaev wrote:
> > Вот на одном гитовом репо git fsck пишет такое:
> > dangling blob 2635bf94eae515a20cd87fb27a4a9ce901917ded
> > dangling blob 3c19db0a36b61f6ee1678eeb764c11fa3547745b
> > О чём бы это могло говорить?
> 
> Ничего страшного:
ещё одна штука: появляется после gear-{rpm,hsh} --commit.

> > Как-нибудь такое лечится?
> 
> git prune
точно. git gc их только находит.
-- 
 С уважением
 Афанасов Дмитрий

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

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

* Re: [sisyphus] Q: Ошибки, найденные git fsck
  2009-12-07 14:29   ` Afanasov Dmitry
@ 2009-12-07 14:35     ` Andrey Rahmatullin
  2009-12-08 11:39       ` Michael Pozhidaev
  0 siblings, 1 reply; 7+ messages in thread
From: Andrey Rahmatullin @ 2009-12-07 14:35 UTC (permalink / raw)
  To: sisyphus

[-- Attachment #1: Type: text/plain, Size: 491 bytes --]

On Mon, Dec 07, 2009 at 05:29:24PM +0300, Afanasov Dmitry wrote:
> > git prune
> точно. git gc их только находит.
git gc --prune

-- 
WBR, wRAR (ALT Linux Team)
Powered by the ALT Linux fortune(6):

--> Orion` (n=orion@*.*.*.*) has joined #altlinux
<Orion`> Всем привет
<Orion`> О чем молчим?
<combr_> Orion`: ВхрЮК
<Vitls> :-)
<Orion`> combr_: ;-)
<drF_ckoff> охгдеж бяел
<combr_> мю уси!
<wRAR> Orion`: оПХБЕР!!
<vvk> :)
<-- Orion` (n=orion@*.*.*.*) has left #altlinux

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

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

* Re: [sisyphus] Q: Ошибки, найденные git fsck
  2009-12-07 14:35     ` Andrey Rahmatullin
@ 2009-12-08 11:39       ` Michael Pozhidaev
  2009-12-08 11:55         ` Terechkov Evgenii
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Pozhidaev @ 2009-12-08 11:39 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussions

Hello, Andrey Rahmatullin!

>> > git prune
>> точно. git gc их только находит.
> git gc --prune

Всё понял. Всем спасибо. Только вот вопрос: можно ли быть увереным, что
в повисших данных нет ничего нужного? 

-- 
Michael Pozhidaev. E-mail: msp@altlinux.ru.
Tomsk State University. http://www.csd.tsu.ru
ALT Linux Team. http://www.altlinux.org



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

* Re: [sisyphus] Q: Ошибки, найденные git fsck
  2009-12-08 11:39       ` Michael Pozhidaev
@ 2009-12-08 11:55         ` Terechkov Evgenii
  0 siblings, 0 replies; 7+ messages in thread
From: Terechkov Evgenii @ 2009-12-08 11:55 UTC (permalink / raw)
  To: sisyphus

08.12.2009 Michael Pozhidaev писал:

> >> > git prune
> >> точно. git gc их только находит.
> > git gc --prune
> Всё понял. Всем спасибо. Только вот вопрос: можно ли быть увереным, что
> в повисших данных нет ничего нужного? 

А вы git show на них, посмотрите.

-- 
                                                С уважением, Терешков
                                                Евгений, ALT Linux
                                                Team


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

end of thread, other threads:[~2009-12-08 11:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-07 13:57 [sisyphus] Q: Ошибки, найденные git fsck Michael Pozhidaev
2009-12-07 14:12 ` Afanasov Dmitry
2009-12-07 14:17 ` Michael Shigorin
2009-12-07 14:29   ` Afanasov Dmitry
2009-12-07 14:35     ` Andrey Rahmatullin
2009-12-08 11:39       ` Michael Pozhidaev
2009-12-08 11:55         ` Terechkov Evgenii

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git