Home Explore Blog CI



git

3rd chunk of `Documentation/fsck-msgids.adoc`
ea0457c48e4dc32e588a0ef1dbbe397327aba975d57f61670000000100000c0f

`mailmapSymlink`::
	(INFO) `.mailmap` is a symlink.

`missingAuthor`::
	(ERROR) Author is missing.

`missingCommitter`::
	(ERROR) Committer is missing.

`missingEmail`::
	(ERROR) Email is missing in an author/committer line.

`missingNameBeforeEmail`::
	(ERROR) Missing name before an email in an author/committer line.

`missingObject`::
	(ERROR) Missing `object` line in tag object.

`missingSpaceBeforeDate`::
	(ERROR) Missing space before date in an author/committer line.

`missingSpaceBeforeEmail`::
	(ERROR) Missing space before the email in an author/committer line.

`missingTag`::
	(ERROR) Unexpected end after `type` line in a tag object.

`missingTagEntry`::
	(ERROR) Missing `tag` line in a tag object.

`missingTaggerEntry`::
	(INFO) Missing `tagger` line in a tag object.

`missingTree`::
	(ERROR) Missing `tree` line in a commit object.

`missingType`::
	(ERROR) Invalid type value on the `type` line in a tag object.

`missingTypeEntry`::
	(ERROR) Missing `type` line in a tag object.

`multipleAuthors`::
	(ERROR) Multiple author lines found in a commit.

`nulInCommit`::
	(WARN) Found a NUL byte in the commit object body.

`nulInHeader`::
	(FATAL) NUL byte exists in the object header.

`nullSha1`::
	(WARN) Tree contains entries pointing to a null sha1.

`packedRefEntryNotTerminated`::
	(ERROR) The "packed-refs" file contains an entry that is
	not terminated by a newline.

`packedRefUnsorted`::
	(ERROR) The "packed-refs" file is not sorted.

`refMissingNewline`::
	(INFO) A loose ref that does not end with newline(LF). As
	valid implementations of Git never created such a loose ref
	file, it may become an error in the future. Report to the
	git@vger.kernel.org mailing list if you see this error, as
	we need to know what tools created such a file.

`symlinkRef`::
	(INFO) A symbolic link is used as a symref. Report to the
	git@vger.kernel.org mailing list if you see this error, as we
	are assessing the feasibility of dropping the support to drop
	creating symbolic links as symrefs.

`symrefTargetIsNotARef`::
	(INFO) The target of a symbolic reference points neither to
	a root reference nor to a reference starting with "refs/".
	Although we allow create a symref pointing to the referent which
	is outside the "ref" by using `git symbolic-ref`, we may tighten
	the rule in the future. Report to the git@vger.kernel.org
	mailing list if you see this error, as we need to know what tools
	created such a file.

`trailingRefContent`::
	(INFO) A loose ref has trailing content. As valid implementations
	of Git never created such a loose ref file, it may become an
	error in the future. Report to the git@vger.kernel.org mailing
	list if you see this error, as we need to know what tools
	created such a file.

`treeNotSorted`::
	(ERROR) A tree is not properly sorted.

`unknownType`::
	(ERROR) Found an unknown object type.

`unterminatedHeader`::
	(FATAL) Missing end-of-line in the object header.

`zeroPaddedDate`::
	(ERROR) Found a zero padded date in an author/committer line.

`zeroPaddedFilemode`::
	(WARN) Found a zero padded filemode in a tree.

Title: Git Error and Warning Messages
Summary
The text lists various error and warning messages related to Git, including issues with commit objects, tag objects, references, and tree sorting, as well as problems with formatting and syntax, such as missing information, invalid types, and unexpected characters.