blob: bab1f6080c462cc32ff85551fef3d925fa88ef16 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-fsck-objects(1)
2===================
3
4NAME
5----
6git-fsck-objects - Verifies the connectivity and validity of the objects in the database
7
8
9SYNOPSIS
10--------
11'git-fsck-objects' [--tags] [--root] [--unreachable] [--cache] [--standalone | --full] [--strict] [<object>*]
12
13DESCRIPTION
14-----------
15Verifies the connectivity and validity of the objects in the database.
16
17OPTIONS
18-------
19<object>::
20An object to treat as the head of an unreachability trace.
21+
22If no objects are given, git-fsck-objects defaults to using the
23index file and all SHA1 references in .git/refs/* as heads.
24
25--unreachable::
26Print out objects that exist but that aren't readable from any
27of the reference nodes.
28
29--root::
30Report root nodes.
31
32--tags::
33Report tags.
34
35--cache::
36Consider any object recorded in the index also as a head node for
37an unreachability trace.
38
39--standalone::
40Limit checks to the contents of GIT_OBJECT_DIRECTORY
41($GIT_DIR/objects), making sure that it is consistent and
42complete without referring to objects found in alternate
43object pools listed in GIT_ALTERNATE_OBJECT_DIRECTORIES,
44nor packed git archives found in $GIT_DIR/objects/pack;
45cannot be used with --full.
46
47--full::
48Check not just objects in GIT_OBJECT_DIRECTORY
49($GIT_DIR/objects), but also the ones found in alternate
50object pools listed in GIT_ALTERNATE_OBJECT_DIRECTORIES,
51and in packed git archives found in $GIT_DIR/objects/pack
52and corresponding pack subdirectories in alternate
53object pools; cannot be used with --standalone.
54
55--strict::
56Enable more strict checking, namely to catch a file mode
57recorded with g+w bit set, which was created by older
58versions of git. Existing repositories, including the
59Linux kernel, git itself, and sparse repository have old
60objects that triggers this check, but it is recommended
61to check new projects with this flag.
62
63It tests SHA1 and general object sanity, and it does full tracking of
64the resulting reachability and everything else. It prints out any
65corruption it finds (missing or bad objects), and if you use the
66'--unreachable' flag it will also print out objects that exist but
67that aren't readable from any of the specified head nodes.
68
69So for example
70
71git-fsck-objects --unreachable HEAD $(cat .git/refs/heads/*)
72
73will do quite a _lot_ of verification on the tree. There are a few
74extra validity tests to be added (make sure that tree objects are
75sorted properly etc), but on the whole if "git-fsck-objects" is happy, you
76do have a valid tree.
77
78Any corrupt objects you will have to find in backups or other archives
79(ie you can just remove them and do an "rsync" with some other site in
80the hopes that somebody else has the object you have corrupted).
81
82Of course, "valid tree" doesn't mean that it wasn't generated by some
83evil person, and the end result might be crap. git is a revision
84tracking system, not a quality assurance system ;)
85
86Extracted Diagnostics
87---------------------
88
89expect dangling commits - potential heads - due to lack of head information::
90You haven't specified any nodes as heads so it won't be
91possible to differentiate between un-parented commits and
92root nodes.
93
94missing sha1 directory '<dir>'::
95The directory holding the sha1 objects is missing.
96
97unreachable <type> <object>::
98The <type> object <object>, isn't actually referred to directly
99or indirectly in any of the trees or commits seen. This can
100mean that there's another root node that you're not specifying
101or that the tree is corrupt. If you haven't missed a root node
102then you might as well delete unreachable nodes since they
103can't be used.
104
105missing <type> <object>::
106The <type> object <object>, is referred to but isn't present in
107the database.
108
109dangling <type> <object>::
110The <type> object <object>, is present in the database but never
111'directly' used. A dangling commit could be a root node.
112
113warning: git-fsck-objects: tree <tree> has full pathnames in it::
114And it shouldn't...
115
116sha1 mismatch <object>::
117The database has an object who's sha1 doesn't match the
118database value.
119This indicates a serious data integrity problem.
120
121Environment Variables
122---------------------
123
124GIT_OBJECT_DIRECTORY::
125used to specify the object database root (usually $GIT_DIR/objects)
126
127GIT_INDEX_FILE::
128used to specify the index file of the index
129
130GIT_ALTERNATE_OBJECT_DIRECTORIES::
131used to specify additional object database roots (usually unset)
132
133Author
134------
135Written by Linus Torvalds <torvalds@osdl.org>
136
137Documentation
138--------------
139Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
140
141GIT
142---
143Part of the gitlink:git[7] suite
144