Merge branch 'po/doc-core-ignorestat'
* po/doc-core-ignorestat: doc: core.ignoreStat update, and clarify the --assume-unchanged effect doc: core.ignoreStat clarify the --assume-unchanged effect
This commit is contained in:
commit
670f6a72b8
@ -375,14 +375,19 @@ This is useful for excluding servers inside a firewall from
|
|||||||
proxy use, while defaulting to a common proxy for external domains.
|
proxy use, while defaulting to a common proxy for external domains.
|
||||||
|
|
||||||
core.ignoreStat::
|
core.ignoreStat::
|
||||||
If true, commands which modify both the working tree and the index
|
If true, Git will avoid using lstat() calls to detect if files have
|
||||||
will mark the updated paths with the "assume unchanged" bit in the
|
changed by setting the "assume-unchanged" bit for those tracked files
|
||||||
index. These marked files are then assumed to stay unchanged in the
|
which it has updated identically in both the index and working tree.
|
||||||
working tree, until you mark them otherwise manually - Git will not
|
+
|
||||||
detect the file changes by lstat() calls. This is useful on systems
|
When files are modified outside of Git, the user will need to stage
|
||||||
where those are very slow, such as Microsoft Windows.
|
the modified files explicitly (e.g. see 'Examples' section in
|
||||||
See linkgit:git-update-index[1].
|
linkgit:git-update-index[1]).
|
||||||
False by default.
|
Git will not normally detect changes to those files.
|
||||||
|
+
|
||||||
|
This is useful on systems where lstat() calls are very slow, such as
|
||||||
|
CIFS/Microsoft Windows.
|
||||||
|
+
|
||||||
|
False by default.
|
||||||
|
|
||||||
core.preferSymlinkRefs::
|
core.preferSymlinkRefs::
|
||||||
Instead of the default "symref" format for HEAD
|
Instead of the default "symref" format for HEAD
|
||||||
|
Loading…
Reference in New Issue
Block a user