Git: what is a dangling commit/blob and where do they come from?

I'm looking for the basic info on dangling commits & blobs.

My repo seems fine. But I ran git fsck for the first time to see what it did and I have a long list of 'dangling blobs' and a single 'dangling commit'.

What are these things? Where did they come from? Do they indicate anything unusual (good or bad) about the state of my repo?


During the course of working with your git repository, you may end up backing out of operations, and making other moves that cause intermediary blobs, and even some things that git does for you to help avoid loss of information.

Eventually (conditionally, according to the git gc man page) it will perform garbage collection and clean these things up. You can also force it by invoking the garbage collection process, git gc .

For more information about this, see Maintenance and Data Recover on the git-scm site.

A manual run of GC will by default leave 2 weeks prior to the runtime of this command of a safety net. It is in fact encouraged to run the GC occasionally to help ensure performant use of your git repository. Like anything, though, you should understand what it is doing before destroying those things that may be important to you.


Dangling blob = A change that made it to the staging area/index but never got committed. One thing that is amazing with git is that once it gets added to the staging area, you can always get it back because these blobs behave like commits in that they have a hash too!!

Dangling commit = A commit that isn't linked to any branch or tag either directly or by any of its ascendants. You can get these back too!


HOWTO remove all dangling commits from your git repository from http://www.tekkie.ro/news/howto-remove-all-dangling-commits-from-your-git-repository/

git reflog expire --expire=now --all
git gc --prune=now

Make sure you really want to remove them, as you might decide you need them after all.

链接地址: http://www.djcxy.com/p/25266.html

上一篇: 我如何在同一个ssh会话中执行2个或更多的命令?

下一篇: Git:什么是悬挂提交/ blob,它们来自哪里?