On Mon, Sep 24, 2018 at 12:58 PM Taylor Blau <me@xxxxxxxxxxxx> wrote: > I'm replying to this part of the email to note that this would cause Git > LFS to have to do some extra work, since running 'git lfs install' > already writes to .git/hooks/post-commit (ironically, to detect and > unlock locks that we should have released). Right, that should have been another bullet point. The fact that there can only be one git hook is.. frustrating. Perhaps, if LFS has an option to bundle global-graph, LFS could merge the hooks when installing? If you instead install global-graph after LFS, I think it should probably attempt something like: -- first move the existing hook to a folder: post-commit.d/ -- install the global-graph hook to post-commit.d/ -- install a new hook at post-commit that simply calls all executables in post-commit.d/ Not sure if this is something that's been discussed, since I know LFS has a similar issue with existing hooks, but might be sensible.