diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-04-04 19:56:24 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-04-04 19:56:24 +0200 |
commit | 439c1e6d5d8ad4d1134fc6ff5e514d28ff9ecac4 (patch) | |
tree | b1a7ebce54d1160b78ba93afcca3ccda26d53ce9 /config.c | |
parent | Merge branch 'tk/ambiguous-fetch-refspec' (diff) | |
parent | t7527: test status with untracked-cache and fsmonitor--daemon (diff) | |
download | git-439c1e6d5d8ad4d1134fc6ff5e514d28ff9ecac4.tar.xz git-439c1e6d5d8ad4d1134fc6ff5e514d28ff9ecac4.zip |
Merge branch 'jh/builtin-fsmonitor-part2'
Built-in fsmonitor (part 2).
* jh/builtin-fsmonitor-part2: (30 commits)
t7527: test status with untracked-cache and fsmonitor--daemon
fsmonitor: force update index after large responses
fsmonitor--daemon: use a cookie file to sync with file system
fsmonitor--daemon: periodically truncate list of modified files
t/perf/p7519: add fsmonitor--daemon test cases
t/perf/p7519: speed up test on Windows
t/perf/p7519: fix coding style
t/helper/test-chmtime: skip directories on Windows
t/perf: avoid copying builtin fsmonitor files into test repo
t7527: create test for fsmonitor--daemon
t/helper/fsmonitor-client: create IPC client to talk to FSMonitor Daemon
help: include fsmonitor--daemon feature flag in version info
fsmonitor--daemon: implement handle_client callback
compat/fsmonitor/fsm-listen-darwin: implement FSEvent listener on MacOS
compat/fsmonitor/fsm-listen-darwin: add MacOS header files for FSEvent
compat/fsmonitor/fsm-listen-win32: implement FSMonitor backend on Windows
fsmonitor--daemon: create token-based changed path cache
fsmonitor--daemon: define token-ids
fsmonitor--daemon: add pathname classification
fsmonitor--daemon: implement 'start' command
...
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -2735,20 +2735,6 @@ int git_config_get_max_percent_split_change(void) return -1; /* default value */ } -int git_config_get_fsmonitor(void) -{ - if (git_config_get_pathname("core.fsmonitor", &core_fsmonitor)) - core_fsmonitor = getenv("GIT_TEST_FSMONITOR"); - - if (core_fsmonitor && !*core_fsmonitor) - core_fsmonitor = NULL; - - if (core_fsmonitor) - return 1; - - return 0; -} - int git_config_get_index_threads(int *dest) { int is_bool, val; |