0

Update docs to remove fsmonitor warning

git fsmonitor is fixed, so remove the warning.

Bug: 1475405
Change-Id: I1e29fa523256bb362560025419fd2a37c246a99a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4902271
Commit-Queue: Josip Sokcevic <sokcevic@chromium.org>
Auto-Submit: Avi Drissman <avi@chromium.org>
Reviewed-by: Josip Sokcevic <sokcevic@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1203311}
This commit is contained in:
Avi Drissman
2023-09-29 16:31:11 +00:00
committed by Chromium LUCI CQ
parent c3f61ea5ae
commit 9908ae44de
3 changed files with 4 additions and 9 deletions

@ -8,9 +8,6 @@ In 2023Q3, we started to move source of Git dependencies from DEPS files to Git
submodules. While we do our best to hide complexities of submodules, some will
be exposed.
IMPORTANT NOTE: Due to a bug in fsmonitor, we encourage you to disable it until
the underlying bug is fixed. More details in https://crbug.com/1475405.
[TOC]
## A quick introduction to Git submoduldes

@ -499,7 +499,8 @@ $ git config core.untrackedCache true
You can significantly speed up git by using [fsmonitor.](https://github.blog/2022-06-29-improve-git-monorepo-performance-with-a-file-system-monitor/)
You should enable fsmonitor in large repos, such as Chromium and v8. Enabling
it globally will launch many processes and probably isn't worthwhile. The
it globally will launch many processes and probably isn't worthwhile. Be sure
you have at least version 2.43 (fsmonitor on the Mac is broken before then). The
command to enable fsmonitor in the current repo is:
```shell

@ -346,13 +346,10 @@ $ git config core.untrackedCache true
You can significantly speed up git by using [fsmonitor.](https://github.blog/2022-06-29-improve-git-monorepo-performance-with-a-file-system-monitor/)
You should enable fsmonitor in large repos, such as Chromium and v8. Enabling
it globally will launch many processes and probably isn't worthwhile. The
it globally will launch many processes and probably isn't worthwhile. Be sure
you have at least version 2.43 (fsmonitor on the Mac is broken before then). The
command to enable fsmonitor in the current repo is:
> WARNING: There is a major issue with fsmonitor resulting in git diff-index
> returning wrong results. Skip enabling this until
[crbug.com/1475405](https://crbug.com/1475405) is fixed.
```shell
$ git config core.fsmonitor true
```