77

How does git detect a file modification so fast?

Does it hash every file in the repo and compare SHA1s? This would take a lot of time, wouldn't it?

Or does it compare atime, ctime or mtime?

1
  • May be different for different platforms. I'm particularly interested in how Git/Windows does it
    – Pacerier
    Oct 20, 2014 at 10:53

4 Answers 4

50

Git tries hard to get convinced from the lstat() value alone that the worktree matches the index, because falling back on file contents is very expensive.

Documentation/technical/racy-git.txt describes what stat fields are used, and how some race conditions due to low mtime granularity are avoided. This article has some more detail.

stat values aren't tamper-proof, see futimens(3). Git may be fooled into missing a change to a file; that does not compromise the integrity of content-hashing.

2
  • 1
    But does every commit fall back on file contents? Or is it guessing even at commit?
    – Pacerier
    Oct 20, 2014 at 10:54
  • 1
    @Pacerier git uses Merkel Trees to quickly compute the hash of an entire repo without needing to hash every file all-over-again. The only requirement is that git knows which files are modified so it knows what parts of the Merkel Tree it needs to recompute.
    – Dai
    Dec 22, 2021 at 6:13
10

There's an initial mtime check for reports like "git status", but when the final commit is computed, mtimes don't matter... it's the SHA1 that matters.

2
  • 1
    @Randal: I don't think this is true, it always does a diff: gist.github.com/240775. If only mtime was used for git status you would see modifications in the paste I did.
    – jkp
    Nov 22, 2009 at 22:52
  • 2
    @jkp My own strace-ing shows that unchanged worktree files only have lstat done to them.
    – Tobu
    Nov 3, 2010 at 22:23
6

Well I would hazard a guess that it's using a combination of stat() calls to work out what looks like it might have changed, then in turn actually tying to ascertain using it's diff'ing engine that this is the case.

You can see the code for the diff engine here to get some idea. I traced through the codebase to be sure that the status command does indeed call down into this code (it looks like a lot of stuff does!) and actually all this makes a lot of sense when you know that Git performs pretty badly on Windows where it is using an emulation layer to perform these POSIX type calls: it's an order of magnitude slower to do a git status on that platform.

Anyway, short of reading all the code from top to bottom (which I may later if I have time!) thats as far as I can take you for now...maybe someone can be more definitive if they have worked with the codebase.

Note: another possible speedup comes from judicious use of inline functions where it clearly makes sense, you can see this clearly in the headers.

[edit: see here for an explanation of stat()]

1
  • care to explain what stat() is/does?
    – hasen
    Nov 22, 2009 at 15:42
3

Depending on platform, you should be able to find out what syscalls Git uses to figure out its status. Try strace git status on Linux, truss git status on SunOS, or the seemingly DTrace-based tool that Apple ships with its Developer Tools on Mac OS X.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.