Created at: 2025-06-30
# Tell git that it's dealing with a repo with lots of files.
git config feature.manyFiles true
Along with this, update the index file to version 4
git update-index --index-version 4
Enables the file system monitor daemon.
git config core.fsmonitor true
Then check if it's on
git fsmonitor--daemon status
This feature adds an extension to the index that remembers the results of the untracked search.
git config core.untrackedcache true
It's a good idea to run git gc
now and then to garbage collect old stuff.
use a commit history cache to improve speed of history operations (like log
).
git config core.commitgraph true
Tells git gc
to update the commit-graph file during non-trivial garbage
collection.
git config fetch.writeCommitGraph true