Bert Wesarg <bert.wesarg@xxxxxxxxxxxxxx> writes: > The documentation for logging updates in git-update-ref, doesn't make it > clear that only a specific subset of refs are honored by this variable. Thanks. > The initial justification in 4057deb (Junio C Hamano, 2006-10-08), leaves > the impression, that a blacklist would have made more sense,... I didn't mean it that way, and I still don't think blacklisting is feasible nor necessarily desirable. Different porcelains can use namespaces under refs/ for their own purposes, and it would be more prudent not to create reflog files that can grow long and not useful given that we cannot predict/guess what they are used for and how, so I would prefer white-listing the ones that are known to be useful. It might make sense to allow customizing the white-list via the configuration mechanism, though. When your favorite third-party git "frotz" add-on uses refs/frotz/ hierarchy for its own purpose, and if viewing "git log -g frotz/master@{now}" is useful, you may want to be able to say "In addition to the standard ones, please log refs/frotz/* automatically". Of the top of my head, something like: [core] autoRefLog = refs/heads/* autoRefLog = refs/remotes/* autoRefLog = refs/notes/* or less expressive but even simpler and probably sufficient: [core] autoRefLog = heads remotes notes can be the spelled-out form of traditional "core.logAllRefUpdates", and you may be able to tweak it like: [core] autoRefLog = heads remotes notes frotz -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html