fsmonitor-settings: VFS for Git virtual repos are incompatible
VFS for Git virtual repositories are incompatible with FSMonitor. VFS for Git is a downstream fork of Git. It contains its own custom file system watcher that is aware of the virtualization. If a working directory is being managed by VFS for Git, we should not try to watch it because we may get incomplete results. We do not know anything about how VFS for Git works, but we do know that VFS for Git working directories contain a well-defined config setting. If it is set, mark the working directory as incompatible. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
d33c804dae
commit
5c58fbd265
@ -78,6 +78,15 @@ test_expect_success FSMONITOR_DAEMON 'run fsmonitor-daemon in bare repo' '
|
||||
grep "bare repository .* is incompatible with fsmonitor" actual
|
||||
'
|
||||
|
||||
test_expect_success MINGW,FSMONITOR_DAEMON 'run fsmonitor-daemon in virtual repo' '
|
||||
test_when_finished "rm -rf ./fake-virtual-clone actual" &&
|
||||
git init fake-virtual-clone &&
|
||||
test_must_fail git -C ./fake-virtual-clone \
|
||||
-c core.virtualfilesystem=true \
|
||||
fsmonitor--daemon run 2>actual &&
|
||||
grep "virtual repository .* is incompatible with fsmonitor" actual
|
||||
'
|
||||
|
||||
test_expect_success 'setup' '
|
||||
mkdir -p .git/hooks &&
|
||||
: >tracked &&
|
||||
|
Reference in New Issue
Block a user