]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/fsck-msgids.txt
Merge branch 'jc/doc-misspelt-refs-fix' into maint-2.43
[thirdparty/git.git] / Documentation / fsck-msgids.txt
1 `badDate`::
2 (ERROR) Invalid date format in an author/committer line.
3
4 `badDateOverflow`::
5 (ERROR) Invalid date value in an author/committer line.
6
7 `badEmail`::
8 (ERROR) Invalid email format in an author/committer line.
9
10 `badFilemode`::
11 (INFO) A tree contains a bad filemode entry.
12
13 `badName`::
14 (ERROR) An author/committer name is empty.
15
16 `badObjectSha1`::
17 (ERROR) An object has a bad sha1.
18
19 `badParentSha1`::
20 (ERROR) A commit object has a bad parent sha1.
21
22 `badTagName`::
23 (INFO) A tag has an invalid format.
24
25 `badTimezone`::
26 (ERROR) Found an invalid time zone in an author/committer line.
27
28 `badTree`::
29 (ERROR) A tree cannot be parsed.
30
31 `badTreeSha1`::
32 (ERROR) A tree has an invalid format.
33
34 `badType`::
35 (ERROR) Found an invalid object type.
36
37 `duplicateEntries`::
38 (ERROR) A tree contains duplicate file entries.
39
40 `emptyName`::
41 (WARN) A path contains an empty name.
42
43 `extraHeaderEntry`::
44 (IGNORE) Extra headers found after `tagger`.
45
46 `fullPathname`::
47 (WARN) A path contains the full path starting with "/".
48
49 `gitattributesBlob`::
50 (ERROR) A non-blob found at `.gitattributes`.
51
52 `gitattributesLarge`::
53 (ERROR) The `.gitattributes` blob is too large.
54
55 `gitattributesLineLength`::
56 (ERROR) The `.gitattributes` blob contains too long lines.
57
58 `gitattributesMissing`::
59 (ERROR) Unable to read `.gitattributes` blob.
60
61 `gitattributesSymlink`::
62 (INFO) `.gitattributes` is a symlink.
63
64 `gitignoreSymlink`::
65 (INFO) `.gitignore` is a symlink.
66
67 `gitmodulesBlob`::
68 (ERROR) A non-blob found at `.gitmodules`.
69
70 `gitmodulesLarge`::
71 (ERROR) The `.gitmodules` file is too large to parse.
72
73 `gitmodulesMissing`::
74 (ERROR) Unable to read `.gitmodules` blob.
75
76 `gitmodulesName`::
77 (ERROR) A submodule name is invalid.
78
79 `gitmodulesParse`::
80 (INFO) Could not parse `.gitmodules` blob.
81
82 `gitmodulesLarge`;
83 (ERROR) `.gitmodules` blob is too large to parse.
84
85 `gitmodulesPath`::
86 (ERROR) `.gitmodules` path is invalid.
87
88 `gitmodulesSymlink`::
89 (ERROR) `.gitmodules` is a symlink.
90
91 `gitmodulesUpdate`::
92 (ERROR) Found an invalid submodule update setting.
93
94 `gitmodulesUrl`::
95 (ERROR) Found an invalid submodule url.
96
97 `hasDot`::
98 (WARN) A tree contains an entry named `.`.
99
100 `hasDotdot`::
101 (WARN) A tree contains an entry named `..`.
102
103 `hasDotgit`::
104 (WARN) A tree contains an entry named `.git`.
105
106 `largePathname`::
107 (WARN) A tree contains an entry with a very long path name. If
108 the value of `fsck.largePathname` contains a colon, that value
109 is used as the maximum allowable length (e.g., "warn:10" would
110 complain about any path component of 11 or more bytes). The
111 default value is 4096.
112
113 `mailmapSymlink`::
114 (INFO) `.mailmap` is a symlink.
115
116 `missingAuthor`::
117 (ERROR) Author is missing.
118
119 `missingCommitter`::
120 (ERROR) Committer is missing.
121
122 `missingEmail`::
123 (ERROR) Email is missing in an author/committer line.
124
125 `missingNameBeforeEmail`::
126 (ERROR) Missing name before an email in an author/committer line.
127
128 `missingObject`::
129 (ERROR) Missing `object` line in tag object.
130
131 `missingSpaceBeforeDate`::
132 (ERROR) Missing space before date in an author/committer line.
133
134 `missingSpaceBeforeEmail`::
135 (ERROR) Missing space before the email in an author/committer line.
136
137 `missingTag`::
138 (ERROR) Unexpected end after `type` line in a tag object.
139
140 `missingTagEntry`::
141 (ERROR) Missing `tag` line in a tag object.
142
143 `missingTaggerEntry`::
144 (INFO) Missing `tagger` line in a tag object.
145
146 `missingTree`::
147 (ERROR) Missing `tree` line in a commit object.
148
149 `missingType`::
150 (ERROR) Invalid type value on the `type` line in a tag object.
151
152 `missingTypeEntry`::
153 (ERROR) Missing `type` line in a tag object.
154
155 `multipleAuthors`::
156 (ERROR) Multiple author lines found in a commit.
157
158 `nulInCommit`::
159 (WARN) Found a NUL byte in the commit object body.
160
161 `nulInHeader`::
162 (FATAL) NUL byte exists in the object header.
163
164 `nullSha1`::
165 (WARN) Tree contains entries pointing to a null sha1.
166
167 `treeNotSorted`::
168 (ERROR) A tree is not properly sorted.
169
170 `unknownType`::
171 (ERROR) Found an unknown object type.
172
173 `unterminatedHeader`::
174 (FATAL) Missing end-of-line in the object header.
175
176 `zeroPaddedDate`::
177 (ERROR) Found a zero padded date in an author/committer line.
178
179 `zeroPaddedFilemode`::
180 (WARN) Found a zero padded filemode in a tree.