Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions GVFS/GVFS.Common/Git/RequiredGitConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ public static Dictionary<string, string> GetRequiredSettings(GVFSEnlistment enli

// Disable the builtin FS Monitor in case it was enabled globally.
{ "core.useBuiltinFSMonitor", "false" },

// Disable the FS Monitor in case it was enabled globally.
{ "core.fsmonitor", "false" },
};
}
}
Expand Down
1 change: 1 addition & 0 deletions GVFS/GVFS.FunctionalTests/Tools/ControlGitRepo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ private void InitializeCore()
GitProcess.Invoke(this.RootPath, "config core.abbrev 40");
GitProcess.Invoke(this.RootPath, "config checkout.workers 0");
GitProcess.Invoke(this.RootPath, "config core.useBuiltinFSMonitor false");
GitProcess.Invoke(this.RootPath, "config core.fsmonitor false");
GitProcess.Invoke(this.RootPath, "config pack.useSparse true");
GitProcess.Invoke(this.RootPath, "config reset.quiet true");
GitProcess.Invoke(this.RootPath, "config status.aheadbehind false");
Expand Down
Loading