• gitwindows增加了file monitor,提高大量文件时git status等命令效率


    f your worktrees have many files, you can make git status, git commit and git add faster by using the (experimental!) config setting core.useBuiltinFSMonitor = true. For users’ convenience, there is a checkbox in the upcoming Git for Windows v2.32.0 installer to do that.

    With this config setting, Git commands that want to refresh Git’s index will query the built-in file system watcher (“FSMonitor”) which files have been changed, and only look at those. When there are tens of thousands of files in the worktree, this makes a difference because Git would otherwise have to look at the lastModified times of all files (“full scan”) to figure out which ones were modified since Git looked last. If the FSMonitor is not yet running, it is automatically started, and subsequent Git commands will benefit from it.

  • 相关阅读:
    面向对象基础之类与对象
    常用模块(一)
    re模块与正则表达式
    初识模块
    函数进阶篇
    Spring + Mybatis 读写分离
    java包的所有类生成class
    Oralce数据库的优化
    Java 搜索引擎
    JAVA分布式架构的演进
  • 原文地址:https://www.cnblogs.com/webtiger/p/15956241.html
Copyright © 2020-2023  润新知