On Fri, May 16, 2025 at 12:50:08AM -0400, Jeff King wrote: > The hash-object command has its own custom flag bits that it sets based > on command-line options. But since we dropped hash_literally() in the > previous commit, the only thing we do with those flag bits is convert > them directly into "index_flags" to pass to index_fd(). > > This extra layer of indirection makes the code harder to read and reason > about. Let's just use the INDEX_* flags directly. Heh, coming full circle with 70c0f9db4e0 (object-file: split up concerns of `HASH_*` flags, 2025-04-15). But I agree, now that we have dropped the `hash_literally()` function this is a sensible change. Patrick