diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-03-08 12:36:30 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-08 12:36:30 -0800 |
commit | cdda65acae0b05a197c9f6684d517a5c4325c08f (patch) | |
tree | ba63e5f6b303dea133610ef3ddb0199e099fdfc8 /t | |
parent | Merge branch 'rs/perf-repeat-thrice-by-default' (diff) | |
parent | untracked cache: use git_env_bool() not getenv() for customization (diff) | |
download | tgif-cdda65acae0b05a197c9f6684d517a5c4325c08f.tar.xz |
Merge branch 'bp/untracked-cache-noflush'
Writing out the index file when the only thing that changed in it
is the untracked cache information is often wasteful, and this has
been optimized out.
* bp/untracked-cache-noflush:
untracked cache: use git_env_bool() not getenv() for customization
dir.c: don't flag the index as dirty for changes to the untracked cache
Diffstat (limited to 't')
-rwxr-xr-x | t/t7063-status-untracked-cache.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t7063-status-untracked-cache.sh b/t/t7063-status-untracked-cache.sh index 46b947824f..c61e304e97 100755 --- a/t/t7063-status-untracked-cache.sh +++ b/t/t7063-status-untracked-cache.sh @@ -14,6 +14,9 @@ test_description='test untracked cache' # See <20160803174522.5571-1-pclouds@gmail.com> if you want to know # more. +GIT_FORCE_UNTRACKED_CACHE=true +export GIT_FORCE_UNTRACKED_CACHE + sync_mtime () { find . -type d -ls >/dev/null } |