Home Explore Blog CI



git

1st chunk of `Documentation/config/add.adoc`
2bbf42f5c1226e7377af4a8c02c1a2c1a35251db7c71ba0400000001000001c4
`add.ignoreErrors`::
`add.ignore-errors` (deprecated)::
	Tells `git add` to continue adding files when some files cannot be
	added due to indexing errors.
ifdef::git-add[]
	Equivalent to the `--ignore-errors` option.
endif::git-add[]
ifndef::git-add[]
	Equivalent to the `--ignore-errors` option of linkgit:git-add[1].
endif::git-add[]
	`add.ignore-errors` is deprecated, as it does not follow the usual
	naming convention for configuration variables.

Title: Git Configuration: Ignore Errors
Summary
The add.ignoreErrors configuration variable tells Git to continue adding files even when some files cannot be added due to indexing errors, equivalent to the --ignore-errors option, allowing the addition process to complete despite individual file errors, with add.ignore-errors being a deprecated alternative.